Home | History | Annotate | Download | only in animation

Lines Matching refs:Matrix

19 import android.graphics.Matrix;
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.
46 protected Matrix mMatrix;
51 * Creates a new transformation with alpha = 1 and the identity matrix.
64 mMatrix = new Matrix();
115 * @return The 3x3 Matrix representing the trnasformation to apply to the
118 public Matrix getMatrix() {
159 sb.append(" matrix="); mMatrix.toShortString(sb);
169 pw.print(" matrix=");