|
CoreExport | ObjectWrapper () |
| Constructor. The wrapper is set to an empty, uninitialized state. More...
|
|
CoreExport | ~ObjectWrapper () |
| Destructor. Calls the Release() method to free any memory used by the wrapper. More...
|
|
CoreExport void | Zero () |
| For internal use only. More...
|
|
CoreExport BOOL | Init (TimeValue t, ObjectState &os, BOOL copy=FALSE, int enable=allEnable, int nativeType=polyObject) |
|
CoreExport void | Release () |
|
CoreExport BOOL | IsEmpty () |
|
CoreExport int | Type () |
|
CoreExport Mesh * | GetTriMesh () |
|
CoreExport MNMesh * | GetPolyMesh () |
|
CoreExport PatchMesh * | GetPatchMesh () |
|
CoreExport void | Invalidate (int iInvalid) |
|
CoreExport void | InvalidateGeomCache () |
|
CoreExport int | NumVerts () |
|
CoreExport int | NumFaces () |
|
CoreExport int | NumEdges () |
|
CoreExport Point3 * | Verts () |
|
CoreExport GenFace * | Faces () |
|
CoreExport GenEdge * | Edges () |
|
CoreExport Point3 * | GetVert (int index) |
|
CoreExport void | SetVert (int index, Point3 &p) |
|
CoreExport void | SetNumVerts (int num) |
|
CoreExport GenFace | GetFace (int index) |
|
CoreExport void | SetFace (int index, GenFace &face) |
|
CoreExport void | SetNumFaces (int num) |
|
CoreExport GenEdge | GetEdge (int index) |
|
CoreExport int | NumFaceEdges (int faceIndex) |
|
CoreExport int | GetFaceEdgeIndex (int faceIndex, int edgeIndex) |
|
CoreExport void | GetVertexSpace (int index, Matrix3 &tm) |
|
CoreExport Point3 * | GetVertexNormal (int index) |
|
CoreExport BOOL | GetFaceHidden (int faceIndex) |
|
CoreExport void | SetFaceHidden (int faceIndex, BOOL hidden) |
|
CoreExport BOOL | GetChannelSupport (int mapChannel) |
|
CoreExport void | SetChannelSupport (int mapChannel, BOOL b) |
|
CoreExport int | NumMapVerts (int channel) |
|
CoreExport void | SetNumMapVerts (int channel, int num) |
|
CoreExport Point3 * | GetMapVert (int channel, int index) |
|
CoreExport void | SetMapVert (int channel, int index, Point3 &p) |
|
CoreExport GenFace | GetMapFace (int channel, int index) |
|
CoreExport void | SetMapFace (int channel, int index, GenFace &face) |
|
CoreExport MtlID | GetMtlID (int index) |
|
CoreExport void | SetMtlID (int index, MtlID mtlID) |
|
CoreExport DWORD | GetSmoothingGroup (int index) |
|
CoreExport void | SetSmoothingGroup (int index, DWORD smGrp) |
|
CoreExport int | GetSelLevel () |
|
CoreExport void | SetSelLevel (int selLevel) |
|
CoreExport BitArray & | GetVertSel () |
|
CoreExport void | SetVertSel (BitArray &sel) |
|
CoreExport BitArray & | GetFaceSel () |
|
CoreExport void | SetFaceSel (BitArray &sel) |
|
CoreExport BitArray & | GetElemSel () |
|
CoreExport void | SetElemSel (BitArray &sel) |
|
CoreExport BitArray * | GetSel (int selLevel) |
|
CoreExport void | SetSel (int selLevel, BitArray &sel) |
|
CoreExport void | FaceToElemSel (BitArray &elemSel, BitArray &faceSel) |
| Converts the bits representing a face selection into bits representing an element selection, and expands the selection accordingly. More...
|
|
CoreExport void | GrowSelection (int selLevel, BitArray &newSel) |
|
CoreExport void | ShrinkSelection (int selLevel, BitArray &newSel) |
|
CoreExport void | GetSoftSel (GenSoftSelData &softSelData) |
|
CoreExport void | SetSoftSel (GenSoftSelData &softSelData) |
|
CoreExport void | UpdateSoftSel () |
|
CoreExport float * | SoftSelWeights () |
|
CoreExport Point3 | SoftSelColor (float f) |
|
CoreExport BOOL | SubObjectHitTest (int selLevel, GraphicsWindow *gw, Material *ma, HitRegion *hr, DWORD flags, HitListWrapper &hitList, int numMat=1, Matrix3 *mat=NULL) |
|
CoreExport int | IntersectRay (Ray &ray, float &intersectAt, Point3 &norm, int &fi, FloatTab &bary) |
|
CoreExport void | Render (GraphicsWindow *gw, Material *ma, RECT *rp, int compFlags, int numMat=1) |
|
CoreExport int | SelLevel (int selLevel) |
|
CoreExport int | HitLevel (int selLevel) |
|
|
static UtilExport void * | operator new (size_t size) |
| Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e) |
| Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new (size_t size, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new (size_t size, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate arrays of objects. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void * | operator new[] (size_t size, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
|
|
static UtilExport void * | operator new[] (size_t size, const std::nothrow_t &e, unsigned long flags) |
| New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
|
|
static UtilExport void | operator delete (void *ptr) |
| Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e) |
| Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, int block_type, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line) |
| Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
|
|
static UtilExport void | operator delete[] (void *ptr, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void | operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags) |
| Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
|
|
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
| Placement new operator. More...
|
|
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
| Placement delete operator. More...
|
|
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
| Allocates memory on a specified alignment boundary. More...
|
|
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
| Reallocates memory on a specified alignment boundary. More...
|
|
static UtilExport void | aligned_free (void *ptr) |
| Frees a block of memory that was allocated with aligned_malloc/aligned_realloc. More...
|
|