33#ifndef _DXF2VRML_CONVERT_H_
34#define _DXF2VRML_CONVERT_H_
37#include <dime/Basic.h>
51 this->maxerr = maxerr;
53 void findHeaderVariables(
dimeModel &model);
55 bool writeVrml(
const char * filename,
const bool vrml1 =
false,
56 const bool only2d =
false);
57 bool writeVrml(FILE *out,
const bool vrml1 =
false,
58 const bool only2d =
false);
71 this->fillmode = fill;
74 return this->fillmode;
78 return this->layercol;
90 return currentInsertColorIndex;
94 friend class dime2Profit;
100 int currentInsertColorIndex;
106 bool private_callback(
const dimeState *
const state,
108 static bool dime_callback(
const dimeState *
const state,
The dimeEntity class is the superclass of all entity classes.
Definition Entity.h:61
The dimeModel class organizes a model.
Definition Model.h:55
The dimeState class manages various state variables while the model is traversed.
Definition State.h:41
The dxfConverter class offers a simple interface for DXF converting. It makes it possible to extract ...
Definition convert.h:45
void setLayercol(const bool v)
Definition convert.h:81
int getNumSub() const
Definition convert.h:63
void setFillmode(const bool fill)
Definition convert.h:70
bool getLayercol() const
Definition convert.h:77
void setMaxerr(const dxfdouble maxerr)
Definition convert.h:50
void setNumSub(const int num)
Definition convert.h:60
dxfdouble getMaxerr() const
Definition convert.h:66
bool getFillmode() const
Definition convert.h:73
int getCurrentInsertColorIndex() const
Definition convert.h:89
The dxfLayerData class handles all geometry for a given color index. DXF geometry is grouped into dif...
Definition layerdata.h:41