Packagecom.flashdynamix.motion.easing
Classpublic class CustomEasing

The CustomEasing Class allows for you to create your own custom ease equations
'precalculated' allows for an Array of precalculated points describing an ease equation.
'curve' allows for a bezier curve describing an ease eequation.



Public Methods
 MethodDefined by
  
curve(t:Number, b:Number, c:Number, d:Number, ... params):Number
[static] Use this function if requiring a custom curve easing equation.
CustomEasing
  
precalculated(t:Number, b:Number, c:Number, d:Number, ... params):Number
[static] Use this function if requiring a custom precalculated easing equation.
In order to use this equation it requires additional parameters that can be defined using the FuseKit Custom Ease Tool
To apply the ease parameters to the equation use the easeParams property on the TweensyTimeline instance.
CustomEasing
Method detail
curve()method
public static function curve(t:Number, b:Number, c:Number, d:Number, ... params):Number

Use this function if requiring a custom curve easing equation. In order to use this equation it requires additional parameters that can be defined using the FuseKit Custom Ease Tool To apply the ease parameters to the equation use the easeParams property on the TweensyTimeline instance.

Parameters
t:Number
 
b:Number
 
c:Number
 
d:Number
 
... params

Returns
Number

See also

precalculated()method 
public static function precalculated(t:Number, b:Number, c:Number, d:Number, ... params):Number

Use this function if requiring a custom precalculated easing equation.
In order to use this equation it requires additional parameters that can be defined using the FuseKit Custom Ease Tool
To apply the ease parameters to the equation use the easeParams property on the TweensyTimeline instance.

Parameters
t:Number
 
b:Number
 
c:Number
 
d:Number
 
... params

Returns
Number

See also