multiply() публичный Метод

public multiply ( Affine a ) : Perspective
a Affine
Результат Perspective
Пример #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;
 }