Home | History | Annotate | Download | only in animation

Lines Matching defs:Transformation

25  * Defines the transformation to be applied at
29 public class Transformation {
31 * Indicates a transformation that has no effect (alpha = 1 and identity matrix.)
35 * Indicates a transformation that applies an alpha only (uses an identity matrix.)
39 * Indicates a transformation that applies a matrix only (alpha = 1.)
43 * Indicates a transformation that applies an alpha and a matrix.
55 * Creates a new transformation with alpha = 1 and the identity matrix.
57 public Transformation() {
62 * Reset the transformation to a state that leaves the object
63 * being animated in an unmodified state. The transformation type is
79 * Indicates the nature of this transformation.
89 * Sets the transformation type.
100 * Clones the specified transformation.
102 * @param t The transformation to clone.
104 public void set(Transformation t) {
117 * Apply this Transformation to an existing Transformation, e.g. apply
121 public void compose(Transformation t) {
130 * Like {@link #compose(Transformation)} but does this.postConcat(t) of
131 * the transformation matrix.
134 public void postCompose(Transformation t) {
201 sb.append("Transformation");
207 * Return a string representation of the transformation in a compact form.