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;
 }