#include <MFnAnimCurve.h>
Create, query and edit Anim Curve Nodes and the keys internal to those Nodes.
Create an Anim Curve Node and connect its output to any animatable attribute on another Node.
Evaluate an Anim Curve at a particular time.
Determine the number of keys held by an Anim Curve.
Determine the time and value of individual keys, as well as the (angle,weight) or (x,y) values and type of key tangents. The in-tangent refers to the tangent entering the key. The out-tangent refers to the tangent leaving the key.
Find the index of the key at, or closest to a particular time.
Set the time and value of individual keys, as well as the type of the tangent to the curve entering (in-tangent) and leaving (out-tangent) the key, specify the tangent as either (angle,weight) or (x,y).
Add and remove keys from an Anim Curve. Anim Curves are implemented as Dependency Graph (DG) Nodes. Each Node can have indexed keys.
There are eight different types of Anim Curve nodes:
Use the Anim Curve Function Set to create Anim Curve Nodes and connect them to animatable attributes on DG Nodes, as well as to query and edit an Anim Curve Node and its keys.
On creation, an Anim Curve Function Set may be attached to a given Anim Curve or it may be unattached. The Function Set may be attached to a different Anim Curve Node using the setObject() methods inherited from the Base Function Set (MFnBase) or with the create() methods.
Use the create() methods of an Anim Curve Function Set to create a new Anim Curve Node, attach the Function Set to the new Node and connect the output of the Node to a specific animatable Attribute or Plug of another Node. Additionally, the output of an Anim Curve Node may be attached to an Attribute or Plug of another DG Node using the DG Modifier method MDGModifier::connect().
Use the evaluate() methods to determine the value of an Anim Curve at a particular time or a given unitless input.
Use the addKey() and remove() methods to add and remove keys to and from an Anim Curve.
The query and edit methods of the Anim Curve Function Set act on keys at a specific 0-based index. [Note that the numKeys() method returns a 1-based value]. Keys can be accessed either randomly (via a 0-based index) or serially (using the find() and findClosest() methods).
Use the find() or findClosest() methods to determine the index of a key at or closest to a specific time respectively.
Use the specific query methods to determine the time, value and tangent information for a key at a given index.
Use the specific edit methods to set the time, value and tangent information for a key at a given index.
There are methods for setting the x,y values for the in- and out-tangents, as well as setting their angles and weights.
Setting the time of a key will fail if the new time would require a re-ordering of the keys. Use the remove() and addKey() methods to re-order the keys. Or use the keyframe command from mel.
The Maya developer's kit ships with example code (animDemo) which demonstrates how to evaluate a Maya animation curve independent from Maya. The animation parameter curves in Maya are defined by a restricted set of cubic two-dimensional Bezier curves. It is defined by four points. P1 = (x1, y1) is the (key,value) pair for the first key. P2 = (x2, y2) is a point which defines the outgoing tangent direction at P1. P4 = (x4, y4) defines the second key and P3 = (x3, y3) is a point which defines the incoming tangent direction at P4. There are some basic restrictions for the x coordinates of these points: x1 <= x2 <= x3 <= x4.
The 2-dimensional Bezier curve is defined as
F(u) = [ u^3 u^2 u 1 ] * B * | P1 | , 0 <= u <= 1 | P2 | | P3 | | P4 | = [ B0(u) B1(u) B2(u) B3(u) ] * | x1 y1 | | x2 y2 | | x3 y3 | | x4 y4 | where B is the Bezier Basis matrix | -1 3 -3 1 | | 3 -6 3 0 | | -3 3 0 0 | | 1 0 0 0 |
F(u) yields a vector of two cubic polynomials [ Fx(u) Fy(u) ] which define an (x, y) position on the parameter curve for some u in the range [0,1].
For an animation parameter curve, we are given the x position and want to know its corresponding y position. To do this we use x = Fx(u) and solve for u. Fx(u) is cubic and the restrictions on valid values for x2 and x3 guarantee there will be only one real root value for u. Once we know u, we can plug it into Fy(u) to get the y value.
One important note is how the outgoing and incoming tangents directions for a key are saved internally and in the Maya Ascii file format. Instead of being specified as points, the tangent directions are specified as vectors. The outgoing tangent direction at P1 is specified and saved as the vector 3*(P2 - P1) and the incoming tangent direction is specified and saved as the vector 3*(P4 - P3).
An animation curve is basically a restricted form of a bezier curve for which the keys serve as the control points and have tangent information embedded within them. There are two different methods for converting tangent information into the control points of the bezier hull and we have taken to calling the two methods weighted and non-weighted tangents.
The animation curve is evaluated in a piecewise manner, which means that each segment between two keys is evaluated on its own, without regards to any other segment. The only time keys outside of a segment are considered is when tangent values are calculated for the spline, clamped and plateau tangent types.
When evaluating an animation curve, a two stage process is used:
Animation curves may have either weighted or non-weighted tangents. With non-weighted tangents, tangents are implemented as vectors and P2 and P3 are internally adjusted to account for the time difference between P1 and P4.
When evaluating a time within a segment, the following algortithms are used:
For weighted tangents: where x is the start of the segment given the bezier x parameters a', b', c', d', find the parameter t which satisfies the formula: (time - x) = (t^3 * a') + (t^2 + b') + (t * c') + d' with t (and the bezier y parameters a, b, c, d) compute the value as: v = (t^3 * a) + (t^2 + b) + (t * c) + d For non-weighted tangents: where x is the start of the segment compute the parameter t as time - x with t (and the bezier y parameters a, b, c, d) compute the value as: v = (t^3 * a) + (t^2 + b) + (t * c) + d
Public Types | |
enum | AnimCurveType { kAnimCurveTA = 0, kAnimCurveTL, kAnimCurveTT, kAnimCurveTU, kAnimCurveUA, kAnimCurveUL, kAnimCurveUT, kAnimCurveUU, kAnimCurveUnknown } |
Defines the input and output type of the animation curve. More... | |
enum | TangentType { kTangentGlobal = 0, kTangentFixed, kTangentLinear, kTangentFlat, kTangentSmooth, kTangentStep, kTangentSlow, kTangentFast, kTangentClamped, kTangentPlateau, kTangentStepNext } |
Defines the type of the tangent. More... | |
enum | InfinityType { kConstant = 0, kLinear = 1, kCycle = 3, kCycleRelative = 4, kOscillate = 5 } |
Defines the type of the infinity. More... | |
Public Member Functions | |
virtual MFn::Type | type () const |
Function set type. | |
virtual | ~MFnAnimCurve () |
Destructor. | |
MFnAnimCurve () | |
Default constructor. | |
MFnAnimCurve (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. | |
MFnAnimCurve (const MPlug &plug, MStatus *ReturnStatus=NULL) | |
MObject | create (const MObject &node, const MObject &attribute, MDGModifier *modifier=NULL, MStatus *ReturnStatus=NULL) |
MObject | create (const MObject &node, const MObject &attribute, AnimCurveType animCurveType, MDGModifier *modifier=NULL, MStatus *ReturnStatus=NULL) |
MObject | create (const MPlug &plug, MDGModifier *modifier=NULL, MStatus *ReturnStatus=NULL) |
MObject | create (const MPlug &plug, AnimCurveType animCurveType, MDGModifier *modifier=NULL, MStatus *ReturnStatus=NULL) |
MObject | create (AnimCurveType animCurveType, MDGModifier *modifier=NULL, MStatus *ReturnStatus=NULL) |
AnimCurveType | animCurveType (MStatus *ReturnStatus=NULL) const |
AnimCurveType | timedAnimCurveTypeForPlug (MPlug &plug, MStatus *ReturnStatus=NULL) const |
AnimCurveType | unitlessAnimCurveTypeForPlug (MPlug &plug, MStatus *ReturnStatus=NULL) const |
double | evaluate (const MTime &atTime, MStatus *ReturnStatus=NULL) const |
MStatus | evaluate (const MTime &atTime, double &value) const |
MStatus | evaluate (const MTime &atTime, MTime &timeValue) const |
MStatus | evaluate (const double &atUnitlessInput, double &value) const |
MStatus | evaluate (const double &atUnitlessInput, MTime &timeValue) const |
bool | isStatic (MStatus *ReturnStatus=NULL) const |
unsigned int | numKeyframes (MStatus *ReturnStatus=NULL) const |
This method is obsolete. | |
unsigned int | numKeys (MStatus *ReturnStatus=NULL) const |
MStatus | remove (unsigned int index, MAnimCurveChange *change=NULL) |
MStatus | addKeyframe (const MTime &time, double value, MAnimCurveChange *change=NULL) |
MStatus | addKeyframe (const MTime &time, double value, TangentType tangentInType, TangentType tangentOutType, MAnimCurveChange *change=NULL) |
unsigned int | addKey (const MTime &time, double value, TangentType tangentInType=kTangentGlobal, TangentType tangentOutType=kTangentGlobal, MAnimCurveChange *change=NULL, MStatus *ReturnStatus=NULL) |
unsigned int | addKey (const MTime &timeInput, const MTime &timeValue, TangentType tangentInType=kTangentGlobal, TangentType tangentOutType=kTangentGlobal, MAnimCurveChange *change=NULL, MStatus *ReturnStatus=NULL) |
unsigned int | addKey (double unitlessInput, double value, TangentType tangentInType=kTangentGlobal, TangentType tangentOutType=kTangentGlobal, MAnimCurveChange *change=NULL, MStatus *ReturnStatus=NULL) |
unsigned int | addKey (double unitlessInput, const MTime &time, TangentType tangentInType=kTangentGlobal, TangentType tangentOutType=kTangentGlobal, MAnimCurveChange *change=NULL, MStatus *ReturnStatus=NULL) |
MStatus | addKeys (MTimeArray *timeArray, MDoubleArray *valueArray, TangentType tangentInType=kTangentGlobal, TangentType tangentOutType=kTangentGlobal, bool keepExistingKeys=false, MAnimCurveChange *change=NULL) |
bool | find (const MTime &time, unsigned int &index, MStatus *ReturnStatus=NULL) const |
bool | find (double unitlessInput, unsigned int &index, MStatus *ReturnStatus=NULL) const |
unsigned int | findClosest (const MTime &time, MStatus *ReturnStatus=NULL) const |
unsigned int | findClosest (double unitlessInput, MStatus *ReturnStatus=NULL) const |
MTime | time (unsigned int index, MStatus *ReturnStatus=NULL) const |
double | value (unsigned int index, MStatus *ReturnStatus=NULL) const |
double | unitlessInput (unsigned int index, MStatus *ReturnStatus=NULL) const |
MStatus | setValue (unsigned int index, double value, MAnimCurveChange *change=NULL) |
MStatus | setTime (unsigned int index, const MTime &time, MAnimCurveChange *change=NULL) |
MStatus | setUnitlessInput (unsigned int index, double unitlessInput, MAnimCurveChange *change=NULL) |
bool | isTimeInput (MStatus *ReturnStatus=NULL) const |
bool | isUnitlessInput (MStatus *ReturnStatus=NULL) const |
TangentType | inTangentType (unsigned int index, MStatus *ReturnStatus=NULL) const |
TangentType | outTangentType (unsigned int index, MStatus *ReturnStatus=NULL) const |
MStatus | setInTangentType (unsigned int index, TangentType tangentType, MAnimCurveChange *change=NULL) |
MStatus | setOutTangentType (unsigned int index, TangentType tangentType, MAnimCurveChange *change=NULL) |
MStatus | getTangent (unsigned int index, float &x, float &y, bool inTangent) const |
MStatus | getTangent (unsigned int index, MAngle &angle, double &weight, bool inTangent) const |
MStatus | setTangent (unsigned int index, float x, float y, bool inTangent, MAnimCurveChange *change=NULL, bool convertUnits=true) |
MStatus | setTangent (unsigned int index, const MAngle &angle, double weight, bool inTangent, MAnimCurveChange *change=NULL, bool convertUnits=true) |
MStatus | setAngle (unsigned int index, const MAngle &angle, bool inTangent, MAnimCurveChange *change=NULL) |
MStatus | setWeight (unsigned int index, double weight, bool inTangent, MAnimCurveChange *change=NULL) |
bool | weightsLocked (unsigned int index, MStatus *ReturnStatus=NULL) const |
bool | tangentsLocked (unsigned int index, MStatus *ReturnStatus=NULL) const |
MStatus | setWeightsLocked (unsigned int index, bool locked, MAnimCurveChange *change=NULL) |
MStatus | setTangentsLocked (unsigned int index, bool locked, MAnimCurveChange *change=NULL) |
InfinityType | preInfinityType (MStatus *ReturnStatus=NULL) const |
InfinityType | postInfinityType (MStatus *ReturnStatus=NULL) const |
MStatus | setPreInfinityType (InfinityType infinityType, MAnimCurveChange *change=NULL) |
MStatus | setPostInfinityType (InfinityType infinityType, MAnimCurveChange *change=NULL) |
bool | isWeighted (MStatus *ReturnStatus=NULL) const |
MStatus | setIsWeighted (bool isWeighted, MAnimCurveChange *change=NULL) |
bool | isBreakdown (unsigned int index, MStatus *ReturnStatus=NULL) const |
MStatus | setIsBreakdown (unsigned int index, bool isBreakdown, MAnimCurveChange *change=NULL) |
MFnAnimCurve (const MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. | |
Protected Member Functions | |
virtual const char * | className () const |
Class name. |
Defines the input and output type of the animation curve.
Animation curves in Maya support either time or unitless inputs. For example, curves set using setKeyframe have time inputs. Curves set using setDrivenKeyframe have unitless inputs. Maya supports four types of outputs: angular, linear, time and unitless. Time, angular and linear outputs work according to the units specified in user preferences and convert units when the preferences are changes. Unitless outputs are not sensitive to user preferences.
Defines the type of the tangent.
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 |
Class constructor that initializes the function set to the single Anim Curve Node connected to the given MPlug. It is possible for a plug to be connected to more than one Anim Curve Node (for example the plug may be connected to a choice node and then several Anim Curves may be connected to the choice node). In this case the function set will attach to one of the Anim Curve Nodes and return MS::kNotImplemented.
[in] | plug | the MPlug to find a single Anim Curve Node |
[out] | ReturnStatus | the return status |
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 MFnAnimCurve::type | ( | ) | const [virtual] |
const char * MFnAnimCurve::className | ( | ) | const [protected, virtual] |
MObject MFnAnimCurve::create | ( | const MObject & | node, | |
const MObject & | attribute, | |||
MDGModifier * | modifier = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Creates a new Anim Curve Node, attaches the Function Set to the new Node (detaching from the current Node) and connects the output of the new Anim Curve Node to an animatable Attribute on another DG Node. This method will fail if the target Attribute is not animatable, or if a connection to the target Attribute already exists.
Once the new Anim Curve Node has been created, the create() method finds the Plug associated with the target Attribute, makes sure the Attribute is animatable and then makes the connection.
The creation and connection of DG Nodes are DG operations. Operations on the DG are performed by DG Modifiers (MDGModifier). A DG Modifier provides methods for editing the DG, however, the operations are not performed immediately. DG operations must be undoable, therefore, the DG Modifier maintains a queue of pending DG operations which are performed when the MDGModifer::doIt() method is invoked. Subsequently, the queue of DG operations becomes the undo queue. When the MDGModifier::undoIt() method is invoked all of the operations on the queue are undone. DG operations on the queue can be done and undone as often as required as long as the Modifier exists and no other changes to the DG make the operations invalid. Once the Modifier holding the queue is destroyed, the queue is lost.
If a DG Modifier is passed as a parameter to this create() method, then that Modifier will be invoked to perform the creation and connection operations. At the completion of the create() method, the Modifier holds the necessary information to undo the operations, therefore, the caller of the create() method can undo the creation and connection if necessary.
If no Modifier is passed in, the create() method instantiates its own Modifier, uses it to perform the DG operations and then destroys the Modifier. The creation and connection, in this case, are not undoable by the caller.
[in] | node | DG Node to which the output of the new Anim Curve Node is to be connected |
[in] | attribute | Attribute on the given node to which the output of the new Anim Curve Node is to be connected |
[in] | modifier | Modifier to be used so undo capability is retained by caller |
[in] | ReturnStatus | Status Code |
MObject MFnAnimCurve::create | ( | const MObject & | node, | |
const MObject & | attribute, | |||
AnimCurveType | animCurveType, | |||
MDGModifier * | modifier = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Creates a new Anim Curve Node, attaches the Function Set to the new Node (detaching from the current Node) and connects the output of the new Anim Curve Node to an animatable Attribute on another DG Node. This method will fail if the target Attribute is not animatable, or if a connection to the target Attribute already exists.
Once the new Anim Curve Node has been created, the create() method finds the Plug associated with the target Attribute, makes sure the Attribute is animatable and then makes the connection.
The creation and connection of DG Nodes are DG operations. Operations on the DG are performed by DG Modifiers (MDGModifier). A DG Modifier provides methods for editing the DG, however, the operations are not performed immediately. DG operations must be undoable, therefore, the DG Modifier maintains a queue of pending DG operations which are performed when the MDGModifer::doIt() method is invoked. Subsequently, the queue of DG operations becomes the undo queue. When the MDGModifier::undoIt() method is invoked all of the operations on the queue are undone. DG operations on the queue can be done and undone as often as required as long as the Modifier exists and no other changes to the DG make the operations invalid. Once the Modifier holding the queue is destroyed, the queue is lost.
If a DG Modifier is passed as a parameter to this create() method, then that Modifier will be invoked to perform the creation and connection operations. At the completion of the create() method, the Modifier holds the necessary information to undo the operations, therefore, the caller of the create() method can undo the creation and connection if necessary.
If no Modifier is passed in, the create() method instantiates its own Modifier, uses it to perform the DG operations and then destroys the Modifier. The creation and connection, in this case, are not undoable by the caller.
[in] | node | DG Node to which the output of the new Anim Curve Node is to be connected |
[in] | attribute | Attribute on the given node to which the output of the new Anim Curve Node is to be connected |
[in] | animCurveType | The animCurve Type to be created |
[in] | modifier | Modifier to be used so undo capability is retained by caller |
[out] | ReturnStatus | Status Code |
MObject MFnAnimCurve::create | ( | const MPlug & | plug, | |
MDGModifier * | modifier = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Creates a new Anim Curve Node, attaches the Function Set to the new Node (detaching from the current Node) and connects the output of the new Anim Curve Node to the Plug on an animatable Attribute on another DG Node. This method will fail if the target Attribute is not animatable, or if a connection to the target Attribute already exists.
If a DG Modifier is passed as a parameter to this create() method, then that Modifier will be invoked to perform the creation and connection operations. At the completion of the create() method, the Modifier holds the necessary information to undo the operations, therefore, the caller of the create() method can undo the creation and connection if necessary.
If no Modifier is passed in, the create() method instantiates its own Modifier, uses it to perform the DG operations and then destroys the Modifier. The creation and connection, in this case, are not undoable by the caller.
[in] | plug | Plug to which the output of the new Anim Curve Node is to be connected |
[in] | modifier | Modifier to be used so undo capability is retained by caller |
[out] | ReturnStatus | Status Code |
MObject MFnAnimCurve::create | ( | const MPlug & | plug, | |
AnimCurveType | animCurveType, | |||
MDGModifier * | modifier = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Creates a new Anim Curve Node, attaches the Function Set to the new Node (detaching from the current Node) and connects the output of the new Anim Curve Node to the Plug on an animatable Attribute on another DG Node. This method will fail if the target Attribute is not animatable, or if a connection to the target Attribute already exists.
If a DG Modifier is passed as a parameter to this create() method, then that Modifier will be invoked to perform the creation and connection operations. At the completion of the create() method, the Modifier holds the necessary information to undo the operations, therefore, the caller of the create() method can undo the creation and connection if necessary.
If no Modifier is passed in, the create() method instantiates its own Modifier, uses it to perform the DG operations and then destroys the Modifier. The creation and connection, in this case, are not undoable by the caller.
[in] | plug | Plug to which the output of the new Anim Curve Node is to be connected |
[in] | animCurveType | The animCurve type to be created |
[in] | modifier | Modifier to be used so undo capability is retained by caller |
[out] | ReturnStatus | Status Code |
MObject MFnAnimCurve::create | ( | AnimCurveType | animCurveType, | |
MDGModifier * | modifier = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Creates a new Anim Curve Node, attaches the Function Set to the new Node (detaching from the current Node) but does not attempt to connect the new Anim Curve Node.
If a DG Modifier is passed as a parameter to this create() method, then that Modifier will be invoked to perform the creation and connection operations. At the completion of the create() method, the Modifier holds the necessary information to undo the operations, therefore, the caller of the create() method can undo the creation and connection if necessary.
If no Modifier is passed in, the create() method instantiates its own Modifier, uses it to perform the DG operations and then destroys the Modifier. The creation and connection, in this case, are not undoable by the caller.
[in] | animCurveType | The type of Anim Curve to be created |
[in] | modifier | Modifier to be used so undo capability is retained by caller |
[out] | ReturnStatus | Status Code |
MFnAnimCurve::AnimCurveType MFnAnimCurve::animCurveType | ( | MStatus * | ReturnStatus = NULL |
) | const |
Returns the animCurve type
[out] | ReturnStatus | Status Code |
MFnAnimCurve::AnimCurveType MFnAnimCurve::timedAnimCurveTypeForPlug | ( | MPlug & | plug, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Returns the timed animCurve type appropriate for the specified plug.
[in] | plug | plug |
[out] | ReturnStatus | Status Code |
MFnAnimCurve::AnimCurveType MFnAnimCurve::unitlessAnimCurveTypeForPlug | ( | MPlug & | plug, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Returns the unitless animCurve type appropriate for the specified plug.
[in] | plug | plug |
[out] | ReturnStatus | Status Code |
Determines the interpolated output value of Anim Curves of type kAnimCurveTA, kAnimCurveTL and kAnimCurveTU at the specified time.
[in] | atTime | Time at which the Anim Curve is to be evaluated |
[out] | ReturnStatus | Status Code . |
Determines the interpolated output value of Anim Curves of type kAnimCurveTA, kAnimCurveTL and kAnimCurveTU at the specified time.
[in] | atTime | Time at which the Anim Curve is to be evaluated |
[out] | value | Interpolated value of Anim Curve at specified time |
Determines the interpolated output value of Anim Curves of type kAnimCurveTT at the specified time.
[in] | atTime | Time at which the Anim Curve is to be evaluated |
[out] | timeValue | Interpolated output time of Anim Curve at specified time |
MStatus MFnAnimCurve::evaluate | ( | const double & | atUnitlessInput, | |
double & | value | |||
) | const |
Determines the interpolated output value of Anim Curves of type kAnimCurveUA, kAnimCurveUL and kAnimCurveUU at the specified unitless input.
[in] | atUnitlessInput | Input value at which the Anim Curve is to be evaluated |
[out] | value | Interpolated output value of Anim Curve at specified input value |
Determines the interpolated output value of Anim Curves of type kAnimCurveUT at the specified unitless input.
[in] | atUnitlessInput | Input value at which the Anim Curve is to be evaluated |
[out] | timeValue | Interpolated output time of Anim Curve at specified time |
bool MFnAnimCurve::isStatic | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines whether or not the animCurve is static. The animCurve is considered to be static if it would return the same value regardless of the evaluation time. This basically means that the values of all the keys are the same and the y component of all the tangents is 0.
[out] | ReturnStatus | Status Code . |
unsigned int MFnAnimCurve::numKeyframes | ( | MStatus * | ReturnStatus = NULL |
) | const |
This method is obsolete.
[out] | ReturnStatus | Status Code |
unsigned int MFnAnimCurve::numKeys | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines the number of keys on the Anim Curve Node.
[out] | ReturnStatus | Status Code |
MStatus MFnAnimCurve::remove | ( | unsigned int | index, | |
MAnimCurveChange * | change = NULL | |||
) |
Removes the key at the specified index.
Unlike the DG which is a (potentially) large complex collection of Nodes, Anim Curves are single Nodes. Thus Anim Curves can edit themselves and do not need a special modifier like the DG Modifier (MDGModifier). However, at times it is necessary to be able to undo and redo changes to Anim Curves. This is primarily to support the interactive editing of Anim Curves via the UI. Since it is impractical to cache the change information on the Node itself, the Anim Curve Change class (MAnimCurveChange) is used.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
If this method is called from within an MItKeyframe iterator, the results are undefined (i.e., it is likely that the incorrect key will be removed). This is because keys are automatically sorted (i.e., assigned new index values) everytime time they are modified in such a manner that could cause them to change order (e.g., they are moved, keys are inserted or removed, etc.).
[in] | index | Index of the key to be removed |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::addKeyframe | ( | const MTime & | time, | |
double | value, | |||
MAnimCurveChange * | change = NULL | |||
) |
Adds a new key with the given value at the specified time.
Tangent types are set to kTangentGlobal. If you immediately query this key for its tangent type (after it is added), it will not be kTangentGlobal, rather it will be the specific type referred to by kTangentGlobal.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | time | Time at which the key is to be added |
[in] | value | Value to which the key is to be set |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::addKeyframe | ( | const MTime & | time, | |
double | value, | |||
TangentType | tangentInType, | |||
TangentType | tangentOutType, | |||
MAnimCurveChange * | change = NULL | |||
) |
Adds a new key with the given value and tangent types at the specified time.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | time | Time at which the key is to be added |
[in] | value | Value to which the key is to be set |
[in] | tangentInType | In tangent type for the key |
[in] | tangentOutType | Out tangent type for the key |
[in] | change | Anim Curve Change cache |
unsigned int MFnAnimCurve::addKey | ( | const MTime & | time, | |
double | value, | |||
TangentType | tangentInType = kTangentGlobal , |
|||
TangentType | tangentOutType = kTangentGlobal , |
|||
MAnimCurveChange * | change = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Adds a new key with the given value and tangent types at the specified time for curves of type kAnimCurveTA, kAnimCurveTL and kAnimCurveTU.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | time | Time at which the key is to be added |
[in] | value | Value to which the key is to be set |
[in] | tangentInType | In tangent type for the key |
[in] | tangentOutType | Out tangent type for the key |
[in] | change | Anim Curve Change cache |
[out] | ReturnStatus | Status Code |
unsigned int MFnAnimCurve::addKey | ( | const MTime & | timeInput, | |
const MTime & | timeValue, | |||
TangentType | tangentInType = kTangentGlobal , |
|||
TangentType | tangentOutType = kTangentGlobal , |
|||
MAnimCurveChange * | change = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Adds a new key with the given output time value and tangent types at the specified input time for curves of type kAnimCurveTT.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | timeInput | Time at which the key is to be added |
[in] | timeValue | Value to which the key is to be set |
[in] | tangentInType | In tangent type for the key |
[in] | tangentOutType | Out tangent type for the key |
[in] | change | Anim Curve Change cache |
[out] | ReturnStatus | Status Code |
unsigned int MFnAnimCurve::addKey | ( | double | unitlessInput, | |
double | value, | |||
TangentType | tangentInType = kTangentGlobal , |
|||
TangentType | tangentOutType = kTangentGlobal , |
|||
MAnimCurveChange * | change = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Adds a new key with the given value and tangent types at the specified unitless input for curves of type kAnimCurveUA, kAnimCurveUL and kAnimCurveUU.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | unitlessInput | Unitless input at which the key is to be added |
[in] | value | Value to which the key is to be set |
[in] | tangentInType | In tangent type for the key |
[in] | tangentOutType | Out tangent type for the key |
[in] | change | Anim Curve Change cache |
[out] | ReturnStatus | Status Code |
unsigned int MFnAnimCurve::addKey | ( | double | unitlessInput, | |
const MTime & | timeValue, | |||
TangentType | tangentInType = kTangentGlobal , |
|||
TangentType | tangentOutType = kTangentGlobal , |
|||
MAnimCurveChange * | change = NULL , |
|||
MStatus * | ReturnStatus = NULL | |||
) |
Adds a new key with the given output time value and tangent types at the specified unitless input for curves of type kAnimCurveUT.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | unitlessInput | Unitless input at which the key is to be added |
[in] | timeValue | Value to which the key is to be set |
[in] | tangentInType | In tangent type for the key |
[in] | tangentOutType | Out tangent type for the key |
[in] | change | Anim Curve Change cache |
[out] | ReturnStatus | Status Code |
MStatus MFnAnimCurve::addKeys | ( | MTimeArray * | timeArray, | |
MDoubleArray * | valueArray, | |||
TangentType | tangentInType = kTangentGlobal , |
|||
TangentType | tangentOutType = kTangentGlobal , |
|||
bool | keepExistingKeys = false , |
|||
MAnimCurveChange * | change = NULL | |||
) |
Add a set of new keys with the given corresponding values and tangent types at the specified times. This method only works for Anim Curves of type kAnimCurveTA, kAnimCurveTL and kAnimCurveTU.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
This method is tuned to provide best performance when:
Note: The timeArray and valueArray arrays are owned by the calling function. This method will copy those arrays to internal structures for use. As such, It is up to the caller to ensure that the memory allocated for the above arrays are deallocated appropriately.
[in] | timeArray | Times at which keys are to be added |
[in] | valueArray | Values to which the keys is to be set |
[in] | tangentInType | In tangent type for all the added keys |
[in] | tangentOutType | Out tangent type for all the added keys |
[in] | keepExistingKeys | Specifies whether the new keys should be merged with existing keys, or if they should be cut prior to adding the new keys |
[in] | change | Anim Curve Change cache |
bool MFnAnimCurve::find | ( | const MTime & | time, | |
unsigned int & | index, | |||
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the index of the key which is set at the specified time.
[in] | time | Time for which a key index is required |
[in] | index | Key index at the specified time (implicit return) |
[out] | ReturnStatus | Status Code |
bool MFnAnimCurve::find | ( | double | unitlessInput, | |
unsigned int & | index, | |||
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the index of the key which is set at the specified unitless input value.
[in] | unitlessInput | Value for which a key index is required |
[in] | index | Key index at the specified time (implicit return) |
[out] | ReturnStatus | Status Code |
Determines the index of the key which is set at the time closest to the specified time.
[in] | time | Time for which a key index is required |
[out] | ReturnStatus | Status Code . |
unsigned int MFnAnimCurve::findClosest | ( | double | unitlessInput, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the index of the key which is set at the time closest to the specified unitless input value.
[in] | unitlessInput | Input value for which a key index is required |
[out] | ReturnStatus | Status Code . |
Determines the time of the key at the specified index.
[in] | index | Index of the key for which the time is required |
[out] | ReturnStatus | Status Code . |
double MFnAnimCurve::value | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the value of the key at the specified index. This method should only be used on Anim Curves of type kAnimCurve*A, kAnimCurve*L or kAnimCurve*U.
[in] | index | Index of the key for which the value is required |
[out] | ReturnStatus | Status Code . |
double MFnAnimCurve::unitlessInput | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the unitless input value of the key at the specified index. This method should only be used on Anim Curves of type kAnimCurveU*.
[in] | index | Index of the key for which the input value is required |
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setValue | ( | unsigned int | index, | |
double | value, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the value of the key at the specified index. This method should only be used on Anim Curves of type kAnimCurve*A, kAnimCurve*L or kAnimCurve*U.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key for which the value is to be set |
[in] | value | Value to which the key is to be set |
MStatus MFnAnimCurve::setTime | ( | unsigned int | index, | |
const MTime & | time, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the time of the key at the specified index. This will fail if setting the time would require re-ordering of the keys. This method should only be used on Anim Curves of type kAnimCurveT*.
Tangents may be changed so that the curve remains monotonic with respect to time.
[in] | index | Index of the key for which the time is to be set |
[in] | time | Time to which the indexed key time is to be set |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::setUnitlessInput | ( | unsigned int | index, | |
double | unitlessInput, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the value of the unitless input of the key at the specified index. This will fail if setting the value would require re-ordering of the keys. This methid should only be used on Anim Curves of type kAnimCurveU*.
Tangents may be changed so that the curve remains monotonic with respect to the unitless input.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key for which the unitless input value is to be set |
[in] | unitlessInput | Value to which the indexed key unitless input value is to be set |
[in] | change | Anim Curve Change cache |
bool MFnAnimCurve::isTimeInput | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines the input type of the animCurve.
[out] | ReturnStatus | Status Code . |
bool MFnAnimCurve::isUnitlessInput | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines the input type of the animCurve.
[out] | ReturnStatus | Status Code . |
MFnAnimCurve::TangentType MFnAnimCurve::inTangentType | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the type of the tangent to the curve entering the current key.
[in] | index | Index of the key for which the tangent type is required |
[out] | ReturnStatus | Status Code . |
MFnAnimCurve::TangentType MFnAnimCurve::outTangentType | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines the type of the tangent to the curve leaving the current key.
[in] | index | Index of the key for which the tangent type is required |
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setInTangentType | ( | unsigned int | index, | |
TangentType | tangentType, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the type of the tangent to the curve entering the key at the specified index.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key for which the tangent type is to be set |
[in] | tangentType | Type to which the tangent is to be set |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::setOutTangentType | ( | unsigned int | index, | |
TangentType | tangentType, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the type of the tangent to the curve leaving the key at the specified index.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key for which the tangent type is to be set |
[in] | tangentType | Type to which the tangent is to be set |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::getTangent | ( | unsigned int | index, | |
float & | x, | |||
float & | y, | |||
bool | inTangent | |||
) | const |
Determines the x,y value representing the vector of the in- or out-tangent (depending on the value of the inTangent parameter) to the curve for the key at the specified index. The values returned will be in Maya's internal units (seconds for time, centimeters for linear, radians for angles). The following examples demonstrates how to convert from internal units of seconds into the current user time unit.
float x,y; animCurveFn.getTangent(i,x,y,true); MTime convert(1.0, MTime::kSeconds); x *= (float) convert.as(MTime::uiUnit());
[in] | index | Index of the key for which the tangent x,y value is required |
[out] | x | The x value of the slope of the tangent in seconds |
[out] | y | Absolute y value of the slope of the tangent |
[in] | inTangent | If true, the in-tangent is returned, else, the out-tangent is returned |
MStatus MFnAnimCurve::getTangent | ( | unsigned int | index, | |
MAngle & | angle, | |||
double & | weight, | |||
bool | inTangent | |||
) | const |
Determines the angle and weight of the in- or out-tangent to the curve for the key at the specified index.
Recall that tangents are stored as vectors internally and in the Maya Ascii file format. This means that the returned angle and weight will be converted from an (x,y) pair to represent the vector according to the following formula:
angle = atan(y/x) weight = x/(3*cos(angle))
where x is in seconds and y is in centimeters for linear units and radians for angular units.
[in] | index | Index of the key for which the tangent x,y value is required |
[out] | angle | The tangent angle |
[out] | weight | The tangent weight |
[in] | inTangent | If true, the inTangent is returned, else, the outTangent is returned |
MStatus MFnAnimCurve::setTangent | ( | unsigned int | index, | |
float | x, | |||
float | y, | |||
bool | inTangent, | |||
MAnimCurveChange * | change = NULL , |
|||
bool | convertUnits = true | |||
) |
Sets the tangent for the key at the specified index. If convertUnits is true (the default) the x value will be scaled by the current UI time units and the y value will be scaled by the relevant UI units for the output type of the animation curve (i.e. linear units for a curve that outputs linear data, and so on).
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
Note that if this method is called on a locked tangent (which they are by default), the corresponding out- or in-tangent will be modified as well (i.e., they will both be set to fixed). To prevent this from occurring, you must first unlock the tangent, make your modifications and then restore the lock setting for the tangent afterwards.
[in] | index | Index of the key for which the tangent type is to be set |
[in] | x | Absolute x value of the slope of the tangent |
[in] | y | Absolute y value of the slope of the tangent |
[in] | inTangent | If true, the inTangent is modified, else, the outTangent is modified |
[in] | change | Anim Curve Change cache |
[in] | convertUnits | Whether to convert to UI units before setting |
MStatus MFnAnimCurve::setTangent | ( | unsigned int | index, | |
const MAngle & | angle, | |||
double | weight, | |||
bool | inTangent, | |||
MAnimCurveChange * | change = NULL , |
|||
bool | convertUnits = true | |||
) |
Sets the tangent for the key at the specified index. If convertUnits is true (the default) the x value will be scaled by the current UI time units and the y value will be scaled by the relevant UI units for the output type of the animation curve (i.e. linear units for a curve that outputs linear data, and so on).
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
Recall that tangents are stored as vectors internally and in the Maya Ascii file format. This means that the provided angle and weight will be converted into an (x,y) pair to represent the vector according to the following formula:
x = 3 * weight * cos(angle) y = 3 * weight * sin(angle)
Note that if this method is called on a locked tangent (which they are by default), the corresponding out- or in-tangent will be modified as well (i.e., they will both be set to fixed). To prevent this from occurring, you must first unlock the tangent, make your modifications and then restore the lock setting for the tangent afterwards.
[in] | index | Index of the key for which the tangent type is to be set |
[in] | angle | The angle to set the tangent |
[in] | weight | The weight to set the tangent |
[in] | inTangent | If true, the inTangent is modified, else, the outTangent is modified |
[in] | change | Anim Curve Change cache |
[in] | convertUnits | Whether to convert to UI units before setting |
MStatus MFnAnimCurve::setAngle | ( | unsigned int | index, | |
const MAngle & | angle, | |||
bool | inTangent, | |||
MAnimCurveChange * | change = NULL | |||
) |
Set the in- or out-angle of the tangent for the key at the given index
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
Note that if this method is called on a locked tangent (which they are by default), the corresponding out- or in-tangent will be modified as well (i.e., they will both be set to fixed). To prevent this from occurring, you must first unlock the tangent, make your modifications and then restore the lock setting for the tangent afterwards.
[in] | index | Index of the key |
[in] | angle | The new in- or out-angle for the key's tangent |
[in] | inTangent | If true, set the in-tangent, else out-tangent |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::setWeight | ( | unsigned int | index, | |
double | weight, | |||
bool | inTangent, | |||
MAnimCurveChange * | change = NULL | |||
) |
Set the in- or out-weight of the tangent for the key at the given index
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
Note that if this method is called on a locked weight (which they are by default), the corresponding out- or in-weight will be modified as well. To prevent this from occurring, you must first unlock the weight, make your modifications and then restore the lock setting for the weight afterwards.
[in] | index | Index of the key |
[in] | weight | The new in- or out-weight for the key's tangent |
[in] | inTangent | If true, set the in-tangent, else set out-tangent |
[in] | change | Anim Curve Change cache |
bool MFnAnimCurve::weightsLocked | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines whether the weights are locked at the given key.
[in] | index | Index of the key to check for locked weights |
[out] | ReturnStatus | Status Code . |
bool MFnAnimCurve::tangentsLocked | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines whether the tangents are locked at the given key.
[in] | index | Index of the key to check for locked tangents |
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setWeightsLocked | ( | unsigned int | index, | |
bool | locked, | |||
MAnimCurveChange * | change = NULL | |||
) |
Lock or unlock the weights at the given key.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key at which to set/unset the locks |
[in] | locked | true if the weights are to be locked, false otherwise |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::setTangentsLocked | ( | unsigned int | index, | |
bool | locked, | |||
MAnimCurveChange * | change = NULL | |||
) |
Lock or unlock the tangents at the given key.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | index | Index of the key at which to set/unset the locks |
[in] | locked | true if the tangents are to be locked, false otherwise |
[in] | change | Anim Curve Change cache |
MFnAnimCurve::InfinityType MFnAnimCurve::preInfinityType | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines the behaviour of the curve for the range occurring before the first key.
[out] | ReturnStatus | Status Code . |
MFnAnimCurve::InfinityType MFnAnimCurve::postInfinityType | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines the behaviour of the curve for the range occurring after the last key.
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setPreInfinityType | ( | MFnAnimCurve::InfinityType | infinityType, | |
MAnimCurveChange * | change = NULL | |||
) |
Set the behaviour of the curve for the range occurring before the first key.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | infinityType | The infinity type to be set. |
[in] | change | Anim Curve Change cache |
MStatus MFnAnimCurve::setPostInfinityType | ( | MFnAnimCurve::InfinityType | infinityType, | |
MAnimCurveChange * | change = NULL | |||
) |
Set the behaviour of the curve for the range occurring after the last key.
If an Anim Curve Change cache is provided to the method, the change to the Anim Curve is saved in the cache and is available to the caller for undo and redo.
If an Anim Curve Change cache is not provided (i.e., change == NULL), the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | infinityType | The infinity type to be set. |
[in] | change | Anim Curve Change cache |
bool MFnAnimCurve::isWeighted | ( | MStatus * | ReturnStatus = NULL |
) | const |
Determines whether or not the curve has weighted tangents.
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setIsWeighted | ( | bool | isWeighted, | |
MAnimCurveChange * | change = NULL | |||
) |
Sets whether or not the curve has weighted tangents.
Unlike the DG which is a (potentially) large complex collection of Nodes, Anim Curves are single Nodes. Thus Anim Curves can edit themselves and do not need a special modifier like the DG Modifier (MDGModifier). However, at times it is necessary to be able to undo and redo changes to Anim Curves. This is primarily to support the interactive editing of Anim Curves via the UI. Since it is impractical to cache the change information on the Node itself, the Anim Curve Change class (MAnimCurveChange) is used.
If a Anim Curve Change cache is provided to the method, the change to the Anim Curve is cached and made available to the caller for undo and redo.
If a Anim Curve Change cache is not provided, the method assumes that the caller does not need undo or redo information, therefore none is cached.
[in] | isWeighted | Whether or not the curve should have weighted tangents |
[in] | change | Anim Curve Change cache |
bool MFnAnimCurve::isBreakdown | ( | unsigned int | index, | |
MStatus * | ReturnStatus = NULL | |||
) | const |
Determines whether or not a key is a breakdown.
[in] | index | The key's index |
[out] | ReturnStatus | Status Code . |
MStatus MFnAnimCurve::setIsBreakdown | ( | unsigned int | index, | |
bool | isBreakdown, | |||
MAnimCurveChange * | change = NULL | |||
) |
Sets the breakdown state of a key at a given index.
[in] | index | Index of the key whose breakdown state is to be modified |
[in] | isBreakdown | The new breakdown state for the key. |
[in] | change | Anim Curve Change cache |
Autodesk® Maya® 2009 © 1997-2008 Autodesk, Inc. All rights reserved. | Generated with 1.5.6 |