Class Matrix3D



    Purpose

    To implement several kind of transformation, such as scale, rotate, translate, etc. .

    Structure

    Matrix3D has 12 variables of type float. These 12 variable constructs a 4*4 matrix :

    / xx yx zx 0 \
    | xy yy zy 0 |
    | xz yz zz 0 |
    \ xo yo zo 1 /




    [Go to Class Index Table] [Go back to Program Architecture Diagram]
    [Source Code of Matrix3D.java]