#include <MFnKeyframeDeltaTangent.h>
A MFnKeyframeDeltaTangent function allows API programmers to read changes in keyframe tangent values. It captures changes in tangent type, as well as, changes in tangent time/value pair.
MFnKeyframeDeltaTangents are generated by a MAnimMessage::addAnimKeyframeEditedCallback. Because a key's tangent may be unbroken. It is possible to receive to MFnKeyframeDeltaTangent values per key -- one for the incoming tangent and one for the outgoing tangent. The API programmer should use the isInTangent method to determine if the tangent change affects the in-bound tangent or out-bound tangent.
Public Member Functions | |
virtual MFn::Type | type () const |
Function set type. | |
virtual | ~MFnKeyframeDeltaTangent () |
Destructor. | |
MFnKeyframeDeltaTangent () | |
Default constructor. | |
MFnKeyframeDeltaTangent (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. | |
MFnAnimCurve::TangentType | previousTangentType (MStatus *ReturnStatus=NULL) const |
MFnAnimCurve::TangentType | currentTangentType (MStatus *ReturnStatus=NULL) const |
MStatus | getPreviousPosition (float &x, float &y) const |
MStatus | getCurrentPosition (float &x, float &y) const |
bool | isInTangent (MStatus *ReturnStatus=NULL) const |
MFnKeyframeDeltaTangent (const MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. | |
Protected Member Functions | |
virtual const char * | className () const |
Class name. |
MFnKeyframeDeltaTangent::MFnKeyframeDeltaTangent | ( | 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 |
MFnKeyframeDeltaTangent::MFnKeyframeDeltaTangent | ( | 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 MFnKeyframeDeltaTangent::type | ( | ) | const [virtual] |
Function set type.
Return the class type : MFn::kKeyframeDeltaTangent
Reimplemented from MFnKeyframeDelta.
const char * MFnKeyframeDeltaTangent::className | ( | ) | const [protected, virtual] |
MFnAnimCurve::TangentType MFnKeyframeDeltaTangent::previousTangentType | ( | MStatus * | ReturnStatus = NULL |
) | const |
Returns the previous tangent type.
[out] | ReturnStatus | Return code. |
MFnAnimCurve::TangentType MFnKeyframeDeltaTangent::currentTangentType | ( | MStatus * | ReturnStatus = NULL |
) | const |
Returns the current tangent type that the key represents.
[out] | ReturnStatus | Return code. |
MStatus MFnKeyframeDeltaTangent::getPreviousPosition | ( | float & | x, | |
float & | y | |||
) | const |
Get the values of the previous time/value position of the tangent for this key.
[out] | x | The x component of the position. |
[out] | y | The y component of the position. |
MStatus MFnKeyframeDeltaTangent::getCurrentPosition | ( | float & | x, | |
float & | y | |||
) | const |
Get the values of the current time/value position of the tangent for this key.
[out] | x | The x component of the position. |
[out] | y | The y component of the position. |
bool MFnKeyframeDeltaTangent::isInTangent | ( | MStatus * | ReturnStatus = NULL |
) | const |
Key's have two tangents, in-bound and out-bound. A MFnKeyframeTangent object can created once for each tangent. Use this method to determine which tangent was modified.
[out] | ReturnStatus | Return code. |
Autodesk® Maya® 2009 © 1997-2008 Autodesk, Inc. All rights reserved. | Generated with 1.5.6 |