MATRIX

3 x 3 matrix

typedef struct {
        short m[3][3];
        long t[3];
} MATRIX;

Members

m Element values of the 3 x 3 matrix
t Amount of translation

Explanation

MATRIX defines a 3 x 3 matrix.
The value of each element is specified by m[i][j].
t[i] specifies the amount of translation after conversion.