#include <tvu_geomv_objects.h>
Inheritance diagram for CTGeomvWLDObject::
Public Methods | |
CTGeomvWLDObject () | |
Contructors/Destructors. More... | |
virtual | ~CTGeomvWLDObject () |
DEFINE_ID_FUNCTIONS (CTGeomvWLDObject, CTPolygon, CLASSNAME_GEOM_WLDOBJECT_ID, CLASSNAME_GEOM_WLDOBJECT) public | |
virtual TBOOL | GetBoundary (BOUNDARY &b) |
virtual CTObject* | Calculate (TINT iOperator, CTObject *Object) |
Calculate the mathematical operators: +, -, *, / and the comparing operators: =, <, <=, >, >=. In this case, the returned value is an object of CTInt. More... | |
virtual TBOOL | FromStruct (int id_camera, void *lpStruct, TLPCSTR lpObjectType=TNULL) |
Overwrite. More... | |
virtual TBOOL | Display (FILE *lpDevice) |
Display to a device (a file), lpFile == NULL means that the device is GEOMVIEW. More... | |
CTDouble& | GetHeight () |
For processing the private data Get the height of object. More... | |
double | SetHeight (double newHeight) |
Set the height of object. More... | |
virtual CTGeomvWLDObject& | operator= (CTGeomvWLDObject &wobj) |
Operations. More... | |
Protected Attributes | |
CTDouble | m_Height |
Data, Height, for the 3D objects. More... |
|
Contructors/Destructors.
|
|
Calculate the mathematical operators: +, -, *, / and the comparing operators: =, <, <=, >, >=. In this case, the returned value is an object of CTInt.
Reimplemented from CGeomvObject. |
|
Display to a device (a file), lpFile == NULL means that the device is GEOMVIEW.
Reimplemented from CGeomvObject. |
|
Overwrite.
|
|
For processing the private data Get the height of object.
00368 { return m_Height; }; |
|
Set the height of object.
00370 { return m_Height.m_d = newHeight; }; |
|
Operations.
00374 { *((CTPolygon*)this) = wobj; m_Height = wobj.m_Height; return *this; }; |
|
Data, Height, for the 3D objects.
|