![]() |
Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
The dimeSpline class handles a SPLINE entity. More...
#include <dime/entities/Spline.h>
Public Types | |
enum | Flags { CLOSED = 0x01, PERIODIC = 0x02, RATIONAL = 0x04, PLANAR = 0x08, LINEAR = 0x10 } |
![]() | |
enum | GeometryType { NONE, POLYGONS, LINES, POINTS } |
![]() | |
enum | { dimeBaseType = 1, dimeRecordType, dimeStringRecordType, dimeFloatRecordType, dimeDoubleRecordType, dimeInt8RecordType, dimeInt16RecordType, dimeInt32RecordType, dimeHexRecordType, dimeRecordHolderType, dimeClassType, dimeUnknownClassType, dimeObjectType, dimeUnknownObjectType, dimeEntityType, dimeUnknownEntityType, dimePolylineType, dimeVertexType, dimeFaceEntityType, dimeExtrusionEntityType, dime3DFaceType, dimeSolidType, dimeTraceType, dimeLineType, dimeTextType, dimePointType, dimeBlockType, dimeInsertType, dimeCircleType, dimeArcType, dimeLWPolylineType, dimeEllipseType, dimeSplineType, dimeSectionType, dimeUnknownSectionType, dimeEntitiesSectionType, dimeBlocksSectionType, dimeTablesSectionType, dimeHeaderSectionType, dimeClassesSectionType, dimeObjectsSectionType, dimeTableType, dimeTableEntryType, dimeUnknownTableType, dimeUCSTableType, dimeLayerTableType, dimeLastTypeTag } |
Public Member Functions | |
dimeSpline () | |
virtual | ~dimeSpline () |
bool | hasWeights () const |
int16 | getFlags () const |
void | setFlags (const int16 flags) |
int16 | getDegree () const |
void | setDegree (const int16 degree) |
dxfdouble | getControlPointTolerance () const |
void | setControlPointTolerance (const dxfdouble tol) |
dxfdouble | getFitPointTolerance () const |
void | setFitPointTolerance (const dxfdouble tol) |
dxfdouble | getKnotTolerance () const |
void | setKnotTolerance (const dxfdouble tol) |
int | getNumKnots () const |
dxfdouble | getKnotValue (const int idx) const |
void | setKnotValue (const int idx, const dxfdouble value) |
void | setKnotValues (const dxfdouble *const values, const int numvalues, dimeMemHandler *const memhandler=NULL) |
int | getNumControlPoints () const |
const dimeVec3f & | getControlPoint (const int idx) const |
void | setControlPoint (const int idx, const dimeVec3f &v) |
void | setControlPoints (const dimeVec3f *const pts, const int numpts, dimeMemHandler *const memhandler=NULL) |
int | getNumWeights () const |
dxfdouble | getWeight (const int idx) const |
void | setWeight (const int idx, const dxfdouble w, dimeMemHandler *const memhandler=NULL) |
int | getNumFitPoints () const |
const dimeVec3f & | getFitPoint (const int idx) const |
void | setFitPoint (const int idx, const dimeVec3f &pt) |
void | setFitPoints (const dimeVec3f *const pts, const int numpts, dimeMemHandler *const memhandler=NULL) |
virtual dimeEntity * | copy (dimeModel *const model) const |
virtual bool | getRecord (const int groupcode, dimeParam ¶m, const int index) const |
virtual const char * | getEntityName () const |
virtual void | print () const |
virtual bool | write (dimeOutput *const out) |
virtual int | typeId () const |
virtual int | countRecords () const |
![]() | |
dimeEntity () | |
virtual | ~dimeEntity () |
int16 | getEntityFlags () const |
void | setEntityFlags (const int16 flags) |
int16 | getColorNumber () const |
void | setColorNumber (const int16 c) |
virtual void | setLayer (const dimeLayer *const layer) |
const dimeLayer * | getLayer () const |
const char * | getLayerName () const |
virtual bool | read (dimeInput *const in) |
virtual bool | isOfType (const int thetypeid) const |
bool | isDeleted () const |
void | setDeleted (const bool onOff=true) |
bool | isTagged () const |
void | setTagged (const bool onOff=true) |
virtual GeometryType | extractGeometry (dimeArray< dimeVec3f > &verts, dimeArray< int > &indices, dimeVec3f &extrusionDir, dxfdouble &thickness) |
![]() | |
dimeRecordHolder (const int separator) | |
virtual | ~dimeRecordHolder () |
void | setRecord (const int groupcode, const dimeParam &value, dimeMemHandler *const memhandler=NULL) |
void | setRecords (const int *const groupcodes, const dimeParam *const params, const int numrecords, dimeMemHandler *const memhandler=NULL) |
void | setIndexedRecord (const int groupcode, const dimeParam &value, const int index, dimeMemHandler *const memhandler=NULL) |
dimeRecord * | findRecord (const int groupcode, const int index=0) |
int | getNumRecordsInRecordHolder (void) const |
dimeRecord * | getRecordInRecordHolder (const int idx) const |
![]() | |
dimeBase (void) | |
virtual | ~dimeBase () |
void * | operator new (size_t size, dimeMemHandler *memhandler=NULL, const int alignment=4) |
void | operator delete (void *ptr) |
Protected Member Functions | |
virtual bool | handleRecord (const int groupcode, const dimeParam ¶m, dimeMemHandler *const memhandler) |
![]() | |
bool | preWrite (dimeOutput *const file) |
virtual bool | traverse (const dimeState *const state, dimeCallback callback, void *userdata) |
virtual void | fixReferences (dimeModel *const model) |
virtual bool | shouldWriteRecord (const int groupcode) const |
bool | copyRecords (dimeEntity *const entity, dimeModel *const model) const |
![]() | |
bool | copyRecords (dimeRecordHolder *const rh, dimeMemHandler *const memhandler) const |
Additional Inherited Members | |
![]() | |
static dimeEntity * | createEntity (const char *const name, dimeMemHandler *const memhandler=NULL) |
static bool | readEntities (dimeInput *const file, dimeArray< dimeEntity *> &array, const char *const stopat) |
static bool | copyEntityArray (const dimeEntity *const *const array, const int nument, dimeModel *const model, dimeArray< dimeEntity *> &destarray) |
static dimeEntity ** | copyEntityArray (const dimeEntity *const *const array, int &nument, dimeModel *const model) |
static void | arbitraryAxis (const dimeVec3f &givenaxis, dimeVec3f &newaxis) |
static void | generateUCS (const dimeVec3f &givenaxis, dimeMatrix &m) |
![]() | |
dimeRecord ** | records |
int | numRecords |
The dimeSpline class handles a SPLINE entity.
dimeSpline::dimeSpline | ( | ) |
Constructor.
|
virtual |
Destructor.
bool dimeSpline::hasWeights | ( | ) | const |
Returns true if the spline has control point weights.
void dimeSpline::setControlPoints | ( | const dimeVec3f *const | pts, |
const int | numpts, | ||
dimeMemHandler *const | memhandler = NULL |
||
) |
Sets new control points for this spline. It is the user's responsibility to update the weights whenever the control point are changed.
void dimeSpline::setWeight | ( | const int | idx, |
const dxfdouble | w, | ||
dimeMemHandler *const | memhandler = NULL |
||
) |
Sets the weight of control point idx.
|
virtual |
Must be implemented by subclasses to return a copy of the entity. model is the model the new entity should belong to.
Implements dimeEntity.
|
virtual |
Will return the value of the record with group code groupcode. false is returned if the record could not be found. Subclasses should overload this method if one or several records are stored in the class. If the groupcode queried is not stored internally, the subclass should call its parent's method.
Reimplemented from dimeEntity.
|
virtual |
Must be implemented by subclasses to return the entity name; e.g. POLYLINE, 3DFACE, etc.
Implements dimeEntity.
|
virtual |
Will write the records to file.
Reimplemented from dimeEntity.
|
virtual |
Must be implemented by all subclasses, and should return an unique id for that class.
Implements dimeBase.
|
virtual |
Returns the number of records in the record holder. Should be overloaded by subclasses which should count their records, and then call the parent's method. This method is used to precalculate the number of records to be written. Very useful when progress information is needed during write().
Reimplemented from dimeEntity.
|
protectedvirtual |
Must be overloaded by entities that directly supports a record type. During dimeRecordHolder::read(), dimeRecordHolder::setRecord and dimeRecordHolder::setRecords, this function is called for every record found, and it is up to the subclass if the record should be stored internally, or if a generic record should be created and stored in this superclass. A subclass should return true when it will handle the record, false otherwise. Default function does nothing, and returns false.
For entities, records with group codes 8 (layer name) and 62 (color number) are automatically handled by the dimeEntity class.
Reimplemented from dimeEntity.