#include <dime/entities/3DFace.h>
Inheritance diagram for dime3DFace:
Public Types | |
enum | Flags { EDGE1_INVISIBLE = 0x0001, EDGE2_INVISIBLE = 0x0002, EDGE3_INVISIBLE = 0x0004, EDGE4_INVISIBLE = 0x0008 } |
Public Member Functions | |
dime3DFace () | |
virtual dimeEntity * | copy (dimeModel *const model) const |
virtual bool | getRecord (const int groupcode, dimeParam ¶m, const int index=0) const |
virtual const char * | getEntityName () const |
void | setFlags (const int16 flags) |
int16 | getFlags () const |
virtual void | print () const |
virtual bool | write (dimeOutput *const out) |
virtual int | typeId () const |
virtual int | countRecords () const |
Public Attributes | |
dimeBlock * | block |
Protected Member Functions | |
virtual bool | handleRecord (const int groupcode, const dimeParam ¶m, dimeMemHandler *const memhandler) |
Protected Attributes | |
int16 | flags |
|
Constructor. |
|
Must be implemented by subclasses to return a copy of the entity. model is the model the new entity should belong to. Implements dimeEntity. |
|
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 dimeFaceEntity. |
|
Must be implemented by subclasses to return the entity name; e.g. POLYLINE, 3DFACE, etc. Implements dimeEntity. |
|
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 dimeFaceEntity. |
|
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 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 dimeFaceEntity. |
|
Must be implemented by all subclasses, and should return an unique id for that class. Reimplemented from dimeFaceEntity. |
|
Will write the records to file. Reimplemented from dimeEntity. |