|
| enum | DtGdbNodeType {
NULL_NODE = -1,
GRIDPOST_LIST = 0,
VERTEX_LIST,
GROUP,
POLYGON_IMMEDIATE,
POLYGON_INDIRECT,
LEVEL_OF_DETAIL,
GRID,
DYNAMIC_COORDINATE_SYSTEM,
STATIC_COORDINATE_SYSTEM,
TERRAIN_FEATURE,
CULTURAL_FEATURE,
BUILDING,
TREE,
TRIANGLE_INDIRECT,
FILE_NODE,
REF_GROUP,
EXTENT_TRIANGLE_INDIRECT,
LAST_NODE_TYPE
} |
| |
| enum | DtIntersectRecordType {
IRT_NO_DATA = 0,
IRT_IPOINT = 0x01,
IRT_INORMAL = 0x02,
IRT_IPOLYGON = 0x04,
IRT_ALL_DATA_TERRAIN = 0x07,
IRT_VECTOR_DATA_INPOINT = 0x10,
IRT_VECTOR_DATA_ALONG_CHORD = 0x20,
IRT_ALL_DATA_INPOINT = 0x17,
IRT_ALL_DATA_ALONG_CHORD = 0x27
} |
| |
| typedef std::set< DtGdbNode * > | DtFoundInstancesContainer |
| |
typedef
DtFoundInstancesContainer::iterator | DtFoundInstancesIter |
| |
typedef
DtFoundInstancesContainer::const_iterator | DtFoundInstancesConstIter |
| |
typedef std::set< const
DtGdbNode * > | DtFoundInstancesConstContainer |
| |
typedef
DtFoundInstancesConstContainer::iterator | DtConstFoundInstancesIter |
| |
typedef
DtFoundInstancesConstContainer::const_iterator | DtConstFoundInstancesConstIter |
| |
|
| virtual | ~DtGdbNode () |
| |
| DtGdbNode & | operator= (const DtGdbNode &orig) |
| |
| virtual DtGdbNodeType | type (void) const =0 |
| |
| virtual void | dump (int indentLevel) const =0 |
| |
| virtual DtTerrainFileVersionNumber | minSaveVersion () const |
| |
| virtual void | expandExtent (DtExtent &extent) const |
| |
| virtual void | recomputeExtent () |
| |
| virtual bool | applyTransform (const DtHomogeneousTransformMatrix &matrix, bool createNewVertices) |
| |
| virtual void | countPolyColors (DtColorCountRecord &cr, const DtExtent &e) const |
| |
| virtual DtGdbNode * | reduce (int &numReductions) |
| |
| virtual DtGdbNode * | persistentReduce () |
| |
| virtual bool | sanityCheck () const |
| |
| virtual bool | intersect (const DtChord &chord, DtPoint &intersectionPoint, double &intersectionTime) const |
| |
| virtual bool | intersect (const DtChord &chord, DtChordIntersectionRecord &record, DtIntersectRecordType irtFlag) const |
| |
| virtual bool | intersect (const DtSphere &sphere, DtSphereIntersectionRecord &record, DtIntersectRecordType irtFlag) const |
| |
| virtual bool | allIntersectsAlongChord (const DtChord &chord, DtChordIntersectRecordList &intList, DtIntersectRecordType irtFlag) const |
| |
| virtual int | intersectBundle (const DtChordBundle &chordBundle, DtList &recordList, DtIntersectRecordType irtFlag) const |
| |
| virtual int | allIntersectsAlongChordBundle (const DtChordBundle &chordBundle, DtList &intListList, DtIntersectRecordType irtFlag) const |
| |
| virtual void | allInstancesOf (const DtGdbNodeType searchType, DtFoundInstancesContainer &foundInstances, bool recurseIntoCoordSysNodes=false) |
| |
| virtual void | allInstancesOf (const DtGdbNodeType searchType, DtFoundInstancesConstContainer &foundInstances, bool recurseIntoCoordSysNodes=false) const |
| |
| virtual void | allInstancesOf (const DtGdbNodeType searchType, DtFoundInstancesContainer &foundInstances, bool recurseIntoCoordSysNodes, DtGdbNodeEvaluationFunctor &functor) |
| |
| virtual void | allInstancesOf (const DtGdbNodeType searchType, DtFoundInstancesConstContainer &foundInstances, bool recurseIntoCoordSysNodes, DtGdbNodeEvaluationFunctor &functor) const |
| |
| virtual void | purgeAllInstancesOf (const DtGdbNodeType searchType) |
| |
| virtual DtGdbNode * | purgeAll () |
| |
| virtual DtGdbNode * | parent (DtGdbNode *child) |
| |
| virtual DtGdbNode * | removeChild (DtGdbNode *child) |
| |
| virtual void | polygonToTriangle (DtMemoryManager *memMgr, unsigned int &numIndConverted, unsigned int &numIndTotal) |
| |
| virtual unsigned int | loadAllExternalFiles () const |
| |
| virtual unsigned int | unloadAllExternalFiles () const |
| |
| virtual int | sizeInBytes () const =0 |
| |
| | DtMemoryManageable () |
| |
| virtual | ~DtMemoryManageable () |
| |
| | DtMemoryManageable (const DtMemoryManageable &orig) |
| |
| DtMemoryManageable & | operator= (const DtMemoryManageable &orig) |
| |
| virtual void | setIsRemoved (bool onOff) |
| |
| virtual bool | isMemoryManaged () const |
| |
| bool | isRemoved () const |
| |