Transform4public class Transform4 extends Object
Fields Summary |
---|
public int | m00 | public int | m01 | public int | m10 | public int | m11 |
Constructors Summary |
---|
public Transform4()
this(1 << 16, 0, 0, 1 << 16);
| public Transform4(int m00, int m01, int m10, int m11)
this.m00 = m00;
this.m01 = m01;
this.m10 = m10;
this.m11 = m11;
// this.det = (double)m00*m11 - (double)m01*m10;
|
|