AffineTransformation.fromMatrixValues constructor

AffineTransformation.fromMatrixValues(
  1. double m00,
  2. double m01,
  3. double m02,
  4. double m10,
  5. double m11,
  6. double m12,
)

Constructs a new transformation whose matrix has the specified values.

@param m00 the entry for the 0, 0 element in the transformation matrix @param m01 the entry for the 0, 1 element in the transformation matrix @param m02 the entry for the 0, 2 element in the transformation matrix @param m10 the entry for the 1, 0 element in the transformation matrix @param m11 the entry for the 1, 1 element in the transformation matrix @param m12 the entry for the 1, 2 element in the transformation matrix

Implementation

AffineTransformation.fromMatrixValues(
    double m00, double m01, double m02, double m10, double m11, double m12) {
  setTransformation(m00, m01, m02, m10, m11, m12);
}