dime
0.9.1
Portable DXF file library
|
The dimeFaceEntity class is an abstract class that handles one-face entity classes. More...
#include <dime/entities/FaceEntity.h>
Public Member Functions | |
virtual int | countRecords () const |
GeometryType | extractGeometry (dimeArray< dimeVec3f > &verts, dimeArray< int > &indices, dimeVec3f &extrusionDir, dxfdouble &thickness) |
virtual void | getExtrusionDir (dimeVec3f &ed) const |
virtual bool | getRecord (const int groupcode, dimeParam ¶m, const int index=0) const |
virtual dxfdouble | getThickness () const |
const dimeVec3f & | getVertex (const int idx) const |
void | getVertices (dimeVec3f &v0, dimeVec3f &v1, dimeVec3f &v2, dimeVec3f &v3) const |
virtual bool | isOfType (const int thetypeid) const |
bool | isQuad () const |
void | setQuad (const dimeVec3f &v0, const dimeVec3f &v1, const dimeVec3f &v2, const dimeVec3f &v3) |
void | setTriangle (const dimeVec3f &v0, const dimeVec3f &v1, const dimeVec3f &v2) |
void | setVertex (const int idx, const dimeVec3f &v) |
virtual int | typeId () const |
Public Member Functions inherited from dimeEntity | |
dimeEntity () | |
virtual | ~dimeEntity () |
virtual dimeEntity * | copy (dimeModel *const model) const =0 |
int16 | getColorNumber () const |
int16 | getEntityFlags () const |
virtual const char * | getEntityName () const =0 |
const dimeLayer * | getLayer () const |
const char * | getLayerName () const |
bool | isDeleted () const |
bool | isTagged () const |
virtual void | print () const |
virtual bool | read (dimeInput *const in) |
void | setColorNumber (const int16 c) |
void | setDeleted (const bool onOff=true) |
void | setEntityFlags (const int16 flags) |
virtual void | setLayer (const dimeLayer *const layer) |
void | setTagged (const bool onOff=true) |
virtual bool | write (dimeOutput *const out) |
Public Member Functions inherited from dimeRecordHolder | |
dimeRecordHolder (const int separator) | |
virtual | ~dimeRecordHolder () |
dimeRecord * | findRecord (const int groupcode, const int index=0) |
int | getNumRecordsInRecordHolder (void) const |
dimeRecord * | getRecordInRecordHolder (const int idx) const |
void | setIndexedRecord (const int groupcode, const dimeParam &value, const int index, dimeMemHandler *const memhandler=NULL) |
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) |
Public Member Functions inherited from dimeBase | |
dimeBase (void) | |
virtual | ~dimeBase () |
void | operator delete (void *ptr) |
void * | operator new (size_t size, dimeMemHandler *memhandler=NULL, const int alignment=4) |
Protected Member Functions | |
void | copyCoords (const dimeFaceEntity *const entity) |
virtual bool | handleRecord (const int groupcode, const dimeParam ¶m, dimeMemHandler *const memhandler) |
virtual bool | swapQuadCoords () const |
bool | writeCoords (dimeOutput *const file) |
Protected Member Functions inherited from dimeEntity | |
bool | copyRecords (dimeEntity *const entity, dimeModel *const model) const |
virtual void | fixReferences (dimeModel *const model) |
bool | preWrite (dimeOutput *const file) |
virtual bool | shouldWriteRecord (const int groupcode) const |
virtual bool | traverse (const dimeState *const state, dimeCallback callback, void *userdata) |
Protected Member Functions inherited from dimeRecordHolder | |
bool | copyRecords (dimeRecordHolder *const rh, dimeMemHandler *const memhandler) const |
Protected Attributes | |
dimeVec3f | coords [4] |
Protected Attributes inherited from dimeRecordHolder | |
int | numRecords |
dimeRecord ** | records |
Additional Inherited Members | |
Public Types inherited from dimeEntity | |
enum | GeometryType { NONE , POLYGONS , LINES , POINTS } |
Public Types inherited from dimeBase | |
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 } |
Static Public Member Functions inherited from dimeEntity | |
static void | arbitraryAxis (const dimeVec3f &givenaxis, dimeVec3f &newaxis) |
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 dimeEntity * | createEntity (const char *const name, dimeMemHandler *const memhandler=NULL) |
static void | generateUCS (const dimeVec3f &givenaxis, dimeMatrix &m) |
static bool | readEntities (dimeInput *const file, dimeArray< dimeEntity * > &array, const char *const stopat) |
The dimeFaceEntity class is an abstract class that handles one-face entity classes.
|
protected |
Copies the coordinates from entity.
|
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.
Reimplemented in dime3DFace, dimeSolid, and dimeTrace.
|
virtual |
A special convenience function, included for your pleasure. Enables the user to ignore the type of entity, and just call this method when extracting geometry. Very useful for 3D viewers that need DXF support. Check out the dxf2vrml directory for an example on how to convert a DXF file to VRML.
Should be overloaded by all subclasses that have geometry, default function returns no geometry. Don't forget to transform vertices by the current transformation matrix if used in a callback from dimeEntity::traverse().
If there are coordinates, but no indices, this means running indices for the entire vertex array.
Different faces and/or line segments are separated by a -1 in the indices array, just as in VRML files.
If thickness != 0.0, the data should, before transformation, be extruded by that length along the extrusion direction. Hence, a point becomes a line, a line becomes a quad, and a polygon becomes an object with a volume.
If thickness == 0.0 and extrusionDir != (0,0,1) all the vertices should be transformed by a matrix that can be created using dimeEntity::generateUCS(). If you are using dimeModel::traverseEntities() to extract the geometry, simply right-multiply the UCS matrix with the matrix found in dimeState to get the correct transformation.
Reimplemented from dimeEntity.
|
virtual |
|
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 group code queried is not stored internally, the subclass should call its parent's method.
Reimplemented from dimeEntity.
Reimplemented in dime3DFace, dimeSolid, and dimeTrace.
|
virtual |
|
inline |
Returns vertex nr idx.
void dimeFaceEntity::getVertices | ( | dimeVec3f & | v0, |
dimeVec3f & | v1, | ||
dimeVec3f & | v2, | ||
dimeVec3f & | v3 ) const |
Returns all four vertices.
|
protectedvirtual |
Must be overloaded by entities that directly support 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.
Reimplemented in dime3DFace, dimeSolid, and dimeTrace.
|
virtual |
Returns true if the object is of type typeid or is inherited from it. Function in base class checks whether thetypeid equals the virtual dimeBase::typeId() value or equals dimeBaseType. Must be implemented by all subclasses that are superclasses of other classes, and should check if thetypeid equals its typeId, and then call its parent's isOfType function. Leaf-classes do not have to implement this method.
Reimplemented from dimeEntity.
void dimeFaceEntity::setQuad | ( | const dimeVec3f & | v0, |
const dimeVec3f & | v1, | ||
const dimeVec3f & | v2, | ||
const dimeVec3f & | v3 ) |
Sets vertices to create a quad.
void dimeFaceEntity::setTriangle | ( | const dimeVec3f & | v0, |
const dimeVec3f & | v1, | ||
const dimeVec3f & | v2 ) |
Sets vertices to create a triangle.
|
protectedvirtual |
Default function returns false. If true is returned, the last two vertices will be swapped before returning geometry in extractGeometry().
|
virtual |
Must be implemented by all subclasses, and should return an unique id for that class.
Implements dimeBase.
Reimplemented in dime3DFace, dimeSolid, and dimeTrace.
|
protected |
Will write the coordinate data to out. Should be called by subclasses at some time during write.