setTo method

GMatrix setTo(
  1. double a,
  2. double b,
  3. double c,
  4. double d,
  5. double tx,
  6. double ty,
)

Sets the members of this matrix to the specified values.

Implementation

GMatrix setTo(double a, double b, double c, double d, double tx, double ty) {
  this.a = a;
  this.b = b;
  this.c = c;
  this.d = d;
  this.tx = tx;
  this.ty = ty;
  return this;
}