CSmoothStopTransition Class
Encapsulates a smooth-stop transition.
Syntax
class CSmoothStopTransition : public CBaseTransition;
Members
Public Constructors
Name | Description |
---|---|
CSmoothStopTransition::CSmoothStopTransition | Constructs a smooth-stop transition and initializes its maximum duration and final value. |
Public Methods
Name | Description |
---|---|
CSmoothStopTransition::Create | Calls the transition library to create encapsulated transition COM object. (Overrides CBaseTransition::Create.) |
Public Data Members
Name | Description |
---|---|
CSmoothStopTransition::m_dblFinalValue | The value of the animation variable at the end of the transition. |
CSmoothStopTransition::m_maximumDuration | The maximum duration of the transition. |
Remarks
A smooth-stop transition slows down as it approaches a given final value, and reaches it with a velocity of zero. The duration of the transition is determined by the initial velocity, the difference between the initial and final values, and the specified maximum duration. If there is no solution consisting of a single parabolic arc, this method creates a cubic transition. Because all transitions are cleared automatically, it's recommended to allocated them using operator new. The encapsulated IUIAnimationTransition COM object is created by CAnimationController::AnimateGroup, until then it's NULL. Changing member variables after creation of this COM object has no effect.
Inheritance Hierarchy
Requirements
Header: afxanimationcontroller.h
CSmoothStopTransition::Create
Calls the transition library to create encapsulated transition COM object.
virtual BOOL Create(
IUIAnimationTransitionLibrary* pLibrary,
IUIAnimationTransitionFactory* \*not used*\);
Parameters
pLibrary
A pointer to transition library, which is responsible for creation of standard transitions.
Return Value
TRUE if transition is created successfully; otherwise FALSE.
CSmoothStopTransition::CSmoothStopTransition
Constructs a smooth-stop transition and initializes its maximum duration and final value.
CSmoothStopTransition(
UI_ANIMATION_SECONDS maximumDuration,
DOUBLE dblFinalValue);
Parameters
maximumDuration
The maximum duration of the transition.
dblFinalValue
The value of the animation variable at the end of the transition.
CSmoothStopTransition::m_dblFinalValue
The value of the animation variable at the end of the transition.
DOUBLE m_dblFinalValue;
CSmoothStopTransition::m_maximumDuration
The maximum duration of the transition.
UI_ANIMATION_SECONDS m_maximumDuration;