Rectangular Shape Render Parameters API This interface gives access to the new Renderable SPline parameters for Rectangular Shapes The IShapeRectRenderParams interface can be retrieved like this: IShapeRectRenderParams* rparams = (IShapeRectRenderParams*)obj->GetProperty(SHAPE_RECT_RENDERPARAMS_PROPID); Note that this interface contains VPT and non VPT parameters.
The non VPT parameters are used for the renderer and the viewport in case GetViewportOrRenderer() returns true, or if GetViewportOrRenderer() returns false and GetUseViewPort() returns false. Otherwise the non vpt settings only control the mesh for the renderer, not the viewport.
|
| IShapeRectRenderParams (ShapeObject *so) |
| Constructor. More...
|
|
CoreExport BOOL | GetRectangular (TimeValue t) const |
| Gets the Rectangular setting of the shape. More...
|
|
CoreExport void | SetRectangular (TimeValue t, BOOL rectangular) |
| Sets the Rectangular setting of the shape. More...
|
|
CoreExport float | GetWidth (TimeValue t) const |
| Gets the Width of the rectangular section of the shape. More...
|
|
CoreExport void | SetWidth (TimeValue t, float width) |
| Sets the Width of the rectangular section of the shape. More...
|
|
CoreExport float | GetLength (TimeValue t) const |
| Gets the Length of the rectangular section of the shape. More...
|
|
CoreExport void | SetLength (TimeValue t, float length) |
| Sets the Length of the rectangular section of the shape. More...
|
|
CoreExport float | GetAngle2 (TimeValue t) const |
| Gets the Angle of the rectangular section of the shape. More...
|
|
CoreExport void | SetAngle2 (TimeValue t, float angle) |
| Sets the Angle of the rectangular section of the shape. More...
|
|
CoreExport BOOL | GetAspectLock (TimeValue t) const |
| Gets the AspectLock parameter of the rectangular section of the shape. More...
|
|
CoreExport void | SetAspectLock (TimeValue t, BOOL aspectLock) |
| Sets the AspectLock parameter of the rectangular section of the shape. More...
|
|
CoreExport BOOL | GetVPTRectangular (TimeValue t) const |
| Gets the Rectangular setting of the shape for the viewport. More...
|
|
CoreExport void | SetVPTRectangular (TimeValue t, BOOL rectangular) |
| Sets the Rectangular parameter of the rectangular section of the shape for the viewport. More...
|
|
CoreExport float | GetVPTWidth (TimeValue t) const |
| Gets the Width of the rectangular section of the shape for the viewport. More...
|
|
CoreExport void | SetVPTWidth (TimeValue t, float width) |
| Sets the Width of the rectangular section of the shape for the viewport. More...
|
|
CoreExport float | GetVPTLength (TimeValue t) const |
| Gets the Length of the rectangular section of the shape for the viewport. More...
|
|
CoreExport void | SetVPTLength (TimeValue t, float length) |
| Sets the Length of the rectangular section of the shape for the viewport. More...
|
|
CoreExport float | GetVPTAngle2 (TimeValue t) const |
| Gets the Angle of the rectangular section of the shape for the viewport. More...
|
|
CoreExport void | SetVPTAngle2 (TimeValue t, float angle) |
| Sets the Angle of the rectangular section of the shape for the viewport. More...
|
|
CoreExport BOOL | GetVPTAspectLock (TimeValue t) const |
| Gets the AspectLock parameter of the rectangular section of the shape for the viewport. More...
|
|
CoreExport void | SetVPTAspectLock (TimeValue t, BOOL aspectLock) |
| Sets the AspectLock parameter of the rectangular section of the shape for the viewport. More...
|
|
CoreExport BOOL | GetAutosmooth (TimeValue t) const |
| Gets the AutoSmooth parameter of the shape. More...
|
|
CoreExport void | SetAutosmooth (TimeValue t, BOOL autosmooth) |
| Sets the AutoSmooth parameter of the shape for the viewport. More...
|
|
CoreExport float | GetAutosmoothThreshold (TimeValue t) const |
| Gets the AutoSmooth Threshold of the shape. More...
|
|
CoreExport void | SetAutosmoothThreshold (TimeValue t, float threshold) |
| Sets the AutoSmooth Threshold of the shape. More...
|
|
DWORD | ID () |
| ID of this AnimProperty. More...
|
|
virtual BOOL | DontDelete () |
|
virtual | ~AnimProperty () |
|
|
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...
|
|