Home | History | Annotate | Download | only in animation

Lines Matching defs:Transformation

24  * Defines the transformation to be applied at
28 public class Transformation {
30 * Indicates a transformation that has no effect (alpha = 1 and identity matrix.)
34 * Indicates a transformation that applies an alpha only (uses an identity matrix.)
38 * Indicates a transformation that applies a matrix only (alpha = 1.)
42 * Indicates a transformation that applies an alpha and a matrix.
51 * Creates a new transformation with alpha = 1 and the identity matrix.
53 public Transformation() {
58 * Reset the transformation to a state that leaves the object
59 * being animated in an unmodified state. The transformation type is
73 * Indicates the nature of this transformation.
83 * Sets the transformation type.
94 * Clones the specified transformation.
96 * @param t The transformation to clone.
98 public void set(Transformation t) {
105 * Apply this Transformation to an existing Transformation, e.g. apply
109 public void compose(Transformation t) {
140 sb.append("Transformation");
146 * Return a string representation of the transformation in a compact form.