netgen/libsrc/visualization/vispar.hpp
Joachim Schoeberl 310cb00b13 autotools
2009-01-12 23:40:13 +00:00

103 lines
1.7 KiB
C++

#ifndef FILE_VISPAR
#define FILE_VISPAR
class VisualizationParameters
{
public:
double lightamb;
double lightdiff;
double lightspec;
double shininess;
double transp;
int locviewer;
char selectvisual[20];
int showstltrias;
Vec3d clipnormal;
double clipdist;
int clipenable;
int clipplanetimestamp;
int colormeshsize;
int drawfilledtrigs;
int drawbadels;
int drawoutline;
int drawedges;
int subdivisions;
int drawprisms;
int drawpyramids;
int drawhexes;
double shrink;
int drawidentified;
int drawpointnumbers;
int drawedgenumbers;
int drawfacenumbers;
int drawelementnumbers;
int drawdomainsurf;
int drawtets;
int drawtetsdomain;
int clipdomain;
int donotclipdomain;
int drawededges;
int drawedpoints;
int drawedpointnrs;
int drawedtangents;
int drawededgenrs;
int drawmetispartition;
int drawcurveproj;
int drawcurveprojedge;
int centerpoint;
int drawelement;
// stl:
int stlshowtrias;
int stlshowfilledtrias;
int stlshowedges;
int stlshowmarktrias;
int stlshowactivechart;
int stlchartnumber;
int stlchartnumberoffset;
// occ:
int occshowvolumenr;
bool occshowsurfaces;
bool occshowedges;
bool occvisproblemfaces;
bool occzoomtohighlightedentity;
double occdeflection;
// ACIS
bool ACISshowfaces;
bool ACISshowedges;
int ACISshowsolidnr;
int ACISshowsolidnr2;
bool whitebackground;
int stereo;
bool usedispllists;
bool drawcoordinatecross;
bool drawcolorbar;
bool drawnetgenlogo;
bool use_center_coords;
double centerx,centery,centerz;
bool drawspecpoint;
double specpointx,specpointy,specpointz;
public:
VisualizationParameters();
};
extern VisualizationParameters vispar;
#endif