33 #ifndef DIME_LWPOLYLINE_H
34 #define DIME_LWPOLYLINE_H
36 #include <dime/entities/ExtrusionEntity.h>
45 virtual bool getRecord(
const int groupcode,
47 const int index)
const;
50 virtual void print()
const;
52 virtual int typeId()
const;
58 dxfdouble &thickness);
59 int getNumVertices()
const;
60 const dxfdouble *getXCoords()
const;
61 const dxfdouble *getYCoords()
const;
62 const dxfdouble *getStartingWidths()
const;
63 const dxfdouble *getEndWidths()
const;
64 const dxfdouble *getBulges()
const;
66 dxfdouble getElevation()
const;
67 dxfdouble getConstantWidth()
const;
68 int16 getFlags()
const;
76 dxfdouble constantWidth;
84 dxfdouble *startingWidth;
92 dimeLWPolyline::getNumVertices()
const
94 return this->numVertices;
97 inline const dxfdouble *
98 dimeLWPolyline::getXCoords()
const
102 inline const dxfdouble *
103 dimeLWPolyline::getYCoords()
const
108 inline const dxfdouble *
109 dimeLWPolyline::getStartingWidths()
const
111 return this->startingWidth;
115 inline const dxfdouble *
116 dimeLWPolyline::getEndWidths()
const
118 return this->endWidth;
121 inline const dxfdouble *
122 dimeLWPolyline::getBulges()
const
128 dimeLWPolyline::getElevation()
const
130 return this->elevation;
134 dimeLWPolyline::getConstantWidth()
const
136 return this->constantWidth;
140 dimeLWPolyline::getFlags()
const
146 #endif // ! DIME_LWPOLYLINE_H