You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @brief Describes all aspects of an animation operation, including the value range, duration, animation curve, property to update, and the delegate.
**/
@implementationCPTAnimationOperation
/** @property CPTAnimationPeriod *period
* @brief The start value, end value, and duration of this animation operation.
**/
@synthesize period;
/** @property CPTAnimationCurve animationCurve
* @brief The animation curve used to animate this operation.
**/
@synthesize animationCurve;
/** @property id boundObject
* @brief The object to update for each animation frame.
**/
@synthesize boundObject;
/** @property SEL boundGetter
* @brief The @ref boundObject getter method for the property to update for each animation frame.
**/
@synthesize boundGetter;
/** @property SEL boundSetter
* @brief The @ref boundObject setter method for the property to update for each animation frame.