|
DllExport | MeshChannelContainer (Mesh *parent) |
|
DllExport | ~MeshChannelContainer ()=default |
|
| MeshChannelContainer (MeshChannelContainer &)=delete |
|
| MeshChannelContainer (MeshChannelContainer &&)=delete |
|
MeshChannelContainer & | operator= (const MeshChannelContainer &)=delete |
|
MeshChannelContainer & | operator= (MeshChannelContainer &&)=delete |
|
DllExport void | ShallowCopyChannelData (MeshChannelContainer const *fromOb, ChannelMask channels) |
| Take and share channel objects with another MNMesh and store them in this container.
|
|
DllExport void | NewAndCopyChannelData (ChannelMask channels) |
| Makes a complete copy of some channel objects and keeps the copy.
|
|
DllExport void | FreeChannelData (ChannelMask channels) |
| Drops the specified channel objects, calls ClearParentInterface() on those objects beforehand.
|
|
DllExport void | AcquireChannelLocks (ChannelMask channels) const |
| Based on a channel mask, request the locks for those channels.
|
|
DllExport void | ReleaseChannelLocks (ChannelMask channels) const |
| Based on a channel mask, release the locks for those channels.
|
|
DllExport MeshTopoChannelData * | GetOrCreateMeshTopoChannelData () |
| Return the MeshTopoChannelData channel object, create it if not allocated.
|
|
MeshTopoChannelData * | GetMeshTopoChannelData () const |
| Return the MeshTopoChannelData channel object, null if not allocated.
|
|
DllExport MeshGeomChannelData * | GetOrCreateMeshGeomChannelData () |
| Return the MeshGeomChannelData channel object, create it if not allocated.
|
|
MeshGeomChannelData * | GetMeshGeomChannelData () const |
| Return the MeshGeomChannelData channel object, null if not allocated.
|
|
DllExport MeshEdgeVisibilityChannelData * | GetOrCreateMeshEdgeVisibilityChannelData () |
| Return the MeshEdgeVisibilityChannelData channel object, create it if not allocated.
|
|
MeshEdgeVisibilityChannelData * | GetMeshEdgeVisibilityChannelData () const |
| Return the MeshEdgeVisibilityChannelData channel object, null if not allocated.
|
|
DllExport MeshVertexColorChannelData * | GetOrCreateMeshVertexColorChannelData () |
| Return the MeshVertexColorChannelData channel object, create it if not allocated.
|
|
MeshVertexColorChannelData * | GetMeshVertexColorChannelData () const |
| Return the MeshVertexColorChannelData channel object, null if not allocated.
|
|
DllExport MeshTextureMapChannelData * | GetOrCreateMeshTextureMapChannelData () |
| Return the MeshTextureMapChannelData channel object, create it if not allocated.
|
|
MeshTextureMapChannelData * | GetMeshTextureMapChannelData () const |
| Return the MeshTextureMapChannelData channel object, null if not allocated.
|
|
DllExport MeshMaterialChannelData * | GetOrCreateMeshMaterialChannelData () |
| Return the MeshMaterialChannelData channel object, create it if not allocated.
|
|
MeshMaterialChannelData * | GetMeshMaterialChannelData () const |
| Return the MeshMaterialChannelData channel object, null if not allocated.
|
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
static UtilExport void * | operator new[] (size_t size, int block_type, const char *filename, int line) |
| New operator used to allocate arrays of objects.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
static UtilExport void * | operator new (size_t size, void *placement_ptr) |
| Placement new operator.
|
|
static UtilExport void | operator delete (void *ptr, void *placement_ptr) |
| Placement delete operator.
|
|
static UtilExport void * | aligned_malloc (size_t size, size_t alignment) |
| Allocates memory on a specified alignment boundary.
|
|
static UtilExport void * | aligned_realloc (void *ptr, size_t size, size_t alignment) |
| Reallocates memory on a specified alignment boundary.
|
|
static UtilExport void | aligned_free (void *ptr) |
| Frees a block of memory that was allocated with aligned_malloc/aligned_realloc.
|
|
Container for managing the MaxSDK::MeshChannelData objects.
The data in these channels objects are what gets manipulated and copied in the modifier stack.