multiply() public method

public multiply ( Affine a ) : Perspective
a Affine
return Perspective
Ejemplo n.º 1
0
 // Multiply inverse of "m" by "this" and assign the result to "this"
 public Perspective premultiply_inv(Affine m)
 {
     Perspective t = new Perspective(m);
     t.invert();
     Set(t.multiply(this));
     return this;
 }