Home | History | Annotate | Download | only in tweenengine

Lines Matching full:interpolation

8  * Core class of the Tween Engine. A Tween is basically an interpolation
10 * Tween is that you can apply an easing formula on this interpolation, in
177 * Factory creating a new standard interpolation. This is the most common
178 * type of interpolation. The starting values are retrieved automatically
182 * <b>You need to set the target values of the interpolation by using one
183 * of the target() methods</b>. The interpolation will run from the
202 * @param target The target object of the interpolation.
203 * @param tweenType The desired type of interpolation.
204 * @param duration The duration of the interpolation, in milliseconds.
216 * Factory creating a new reversed interpolation. The ending values are
220 * <b>You need to set the starting values of the interpolation by using one
221 * of the target() methods</b>. The interpolation will run from the
240 * @param target The target object of the interpolation.
241 * @param tweenType The desired type of interpolation.
242 * @param duration The duration of the interpolation, in milliseconds.
255 * Factory creating a new instantaneous interpolation (thus this is not
256 * really an interpolation).
259 * <b>You need to set the target values of the interpolation by using one
260 * of the target() methods</b>. The interpolation will set the target
279 * @param target The target object of the interpolation.
280 * @param tweenType The desired type of interpolation.
462 * Sets the target value of the interpolation. The interpolation will run
471 * @param targetValue The target value of the interpolation.
480 * Sets the target values of the interpolation. The interpolation will run
489 * @param targetValue1 The 1st target value of the interpolation.
490 * @param targetValue2 The 2nd target value of the interpolation.
500 * Sets the target values of the interpolation. The interpolation will run
509 * @param targetValue1 The 1st target value of the interpolation.
510 * @param targetValue2 The 2nd target value of the interpolation.
511 * @param targetValue3 The 3rd target value of the interpolation.
522 * Sets the target values of the interpolation. The interpolation will run
531 * @param targetValues The target values of the interpolation.
541 * Sets the target value of the interpolation, relatively to the <b>value
549 * @param targetValue The relative target value of the interpolation.
559 * Sets the target values of the interpolation, relatively to the <b>values
567 * @param targetValue1 The 1st relative target value of the interpolation.
568 * @param targetValue2 The 2nd relative target value of the interpolation.
579 * Sets the target values of the interpolation, relatively to the <b>values
587 * @param targetValue1 The 1st relative target value of the interpolation.
588 * @param targetValue2 The 2nd relative target value of the interpolation.
589 * @param targetValue3 The 3rd relative target value of the interpolation.
601 * Sets the target values of the interpolation, relatively to the <b>values
609 * @param targetValues The relative target values of the interpolation.