Sphere function set for dependency node data .
MFnSphereData allows the creation and manipulation of sphere (represented as MObjects) data objects for use in the dependency graph.
If a user written dependency node either accepts or produces MObjects containing spheres, then this class is used to extract or create the data that comes from or goes to other dependency graph nodes. The MDataHandle::type method will return kSphere when data of this type is present. To access it, the MDataHandle::data method is used to get an MObject for the data and this should then be used to initialize an instance of MFnNurbsSurface.
#include <MFnSphereData.h>
Public Member Functions |
|
virtual MFn::Type | type () const |
Function set type. |
|
virtual | ~MFnSphereData () |
Destructor. |
|
MFnSphereData () | |
Default constructor. |
|
MFnSphereData (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MObject | create (double rad=1, MStatus *ReturnStatus=NULL) |
Create a new sphere of the given radius, and
attach it to this instance as an MObject.
|
|
double | radius (MStatus *ReturnStatus=NULL) const |
Return the radius of the sphere attached to
this instance. |
|
MStatus | setRadius (double rad) |
Change the radius of the sphere attached to
this instance instance as an MObject.
|
|
MFnSphereData (const MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
Protected Member Functions |
|
virtual const char * | className () const |
Class name. |
MFnSphereData | ( | MObject & | object, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
Class constructor that initializes the function set to the given MObject.
[in] | object | The MObject to attach the function set to |
[out] | ReturnStatus | the return status |
MFnSphereData | ( | const MObject & | object, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
Class constructor that initializes the function set to the given MObject.
[in] | object | The MObject to attach the function set to |
[out] | ReturnStatus | the return status |
MFn::Type type | ( | ) | const [virtual] |
const char * className | ( | ) | const [protected, virtual] |
double radius | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Return the radius of the sphere attached to this instance.
[out] | ReturnStatus | kSuccess if the instance has a sphere attached to it, and kFailure otherwise. |