GMatrix constructor

GMatrix([
  1. double a = 1,
  2. double b = 0,
  3. double c = 0,
  4. double d = 1,
  5. double tx = 0,
  6. double ty = 0,
])

Constructor with optional parameters for all matrix values.

Implementation

GMatrix([
  this.a = 1,
  this.b = 0,
  this.c = 0,
  this.d = 1,
  this.tx = 0,
  this.ty = 0,
]);