AffineMatrix constructor

const AffineMatrix(
  1. double a,
  2. double b,
  3. double c,
  4. double d,
  5. double e,
  6. double f, [
  7. double? m4_10,
])

Creates an immutable affine matrix. To work with the identity matrix, use the identity property.

Implementation

const AffineMatrix(
  this.a,
  this.b,
  this.c,
  this.d,
  this.e,
  this.f, [
  double? m4_10,
]) : _m4_10 = m4_10 ?? (1.0 * a);