FileDocCategorySizeDatePackage
Transform4.javaAPI DocphoneME MR2 API (J2ME)2637Wed May 02 18:00:36 BST 2007com.sun.pisces

Transform4

public 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;
    
Methods Summary