CurveSegmentManip function set.
The CurveSegmentManip allows the user to manipulate two points on a curve, in order to specify a curve segment. This manipulator generates two floating point values, which correspond to the parameters of the start and end of the curve segment.
#include <MFnCurveSegmentManip.h>
Public Member Functions |
|
virtual MFn::Type | type () const |
Function set type. |
|
virtual | ~MFnCurveSegmentManip () |
Destructor. |
|
MFnCurveSegmentManip () | |
Default constructor. |
|
MFnCurveSegmentManip (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MFnCurveSegmentManip (const MDagPath &object, MStatus *ret=NULL) | |
Constructor. |
|
MObject | create (MStatus *ReturnStatus=NULL) |
Creates a new CurveSegmentManip. |
|
MObject | create (const MString &manipName, const MString &startParamName, const MString &endParamName, MStatus *ReturnStatus=NULL) |
Creates a new CurveSegmentManip. |
|
MStatus | connectToCurvePlug (MPlug &curvePlug) |
Connect to the curve plug. |
|
MStatus | connectToStartParamPlug (MPlug &startParamPlug) |
Connect to the startParam plug. |
|
MStatus | connectToEndParamPlug (MPlug &endParamPlug) |
Connect to the endParam plug. |
|
MStatus | setStartParameter (double startParameter) |
Sets the start parameter. |
|
MStatus | setEndParameter (double endParameter) |
Sets the end parameter. |
|
double | startParameter (MStatus *ReturnStatus=NULL) const |
Returns the start parameter. |
|
double | endParameter (MStatus *ReturnStatus=NULL) const |
Returns the end parameter. |
|
unsigned int | curveIndex (MStatus *ReturnStatus=NULL) const |
Returns the index of the curve. |
|
unsigned int | startParamIndex (MStatus *ReturnStatus=NULL) const |
Returns the index of the start parameter of
the CurveSegmentManip. |
|
unsigned int | endParamIndex (MStatus *ReturnStatus=NULL) const |
Returns the index of the end parameter of
the CurveSegmentManip. |
|
MFnCurveSegmentManip (const MObject &object, MStatus *ret=NULL) | |
Constructor. |
|
Protected Member Functions |
|
virtual const char * | className () const |
Class name. |
~MFnCurveSegmentManip | ( | ) | [virtual] |
Destructor.
Class destructor.
MFnCurveSegmentManip | ( | 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 |
MFnCurveSegmentManip | ( | const MDagPath & | object, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
Class constructor that initializes the function set to the given constant MDagPath object.
[in] | object | The const MDagPath to attach the function set to |
[out] | ReturnStatus | The return status |
MFnCurveSegmentManip | ( | 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] |
Creates a new CurveSegmentManip.
This function set's object is set to be the new manipulator.
This method should only be used to create a non-composite CurveSegmentManip.
The name that appears in the feedback line is "CurveSegment"
[out] | ReturnStatus | return status |
MObject create | ( | const MString & | manipName, |
const MString & | startParamName, | ||
const MString & | endParamName, | ||
MStatus * | ReturnStatus =
NULL |
||
) |
Creates a new CurveSegmentManip.
This function set's object is set to be the new manipulator.
This method should only be used to create a non-composite CurveSegmentManip.
The names that appears in the feedback line are specified by the startParamName and endParamName arguments.
[in] | manipName | Name of the manip for UI purposes. |
[in] | startParamName | Label for the startParam value which appears in the feedback line. |
[in] | endParamName | Label for the endParam value which appears in the feedback line. |
[out] | ReturnStatus | Status code. |
Connect to the curve plug.
The data type corresponding to the curvePlug is MFnData::kNurbsCurve.
[in] | curvePlug | the curve plug |
Connect to the startParam plug.
The data type corresponding to the startParamPlug is a double.
[in] | startParamPlug | the startParam plug |
Connect to the endParam plug.
The data type corresponding to the endParamPlug is a double.
[in] | endParamPlug | the endParam plug |
MStatus setStartParameter | ( | double | startParameter | ) |
Sets the start parameter.
[in] | startParameter | the start parameter |
MStatus setEndParameter | ( | double | endParameter | ) |
Sets the end parameter.
[in] | endParameter | the end parameter |
double startParameter | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns the start parameter.
[out] | ReturnStatus | return status |
double endParameter | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns the end parameter.
[out] | ReturnStatus | return status |
unsigned int curveIndex | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns the index of the curve.
The data type corresponding to this index is MFnData::kNurbsCurve.
[out] | ReturnStatus | return status |
unsigned int startParamIndex | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns the index of the start parameter of the CurveSegmentManip.
The data type corresponding to this index is a double.
[out] | ReturnStatus | return status |
unsigned int endParamIndex | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns the index of the end parameter of the CurveSegmentManip.
The data type corresponding this index is a double.
[out] | ReturnStatus | return status |