Uses of Class
y25.graphics.Transform.Matrix4x4

Packages that use Transform.Matrix4x4
y25.graphics Linear algebra classes and utilities for the three dimensional space. 
 

Uses of Transform.Matrix4x4 in y25.graphics
 

Fields in y25.graphics declared as Transform.Matrix4x4
protected  Transform.Matrix4x4 Transform.transform
          The matrix that stores the current transform operation.
protected  Transform.Matrix4x4 Transform.inverse
          The matrix that stores the inverse of the current transform operation.
 

Methods in y25.graphics that return Transform.Matrix4x4
 Transform.Matrix4x4 Transform.Matrix4x4.transpose()
           
 Transform.Matrix4x4 Transform.Matrix4x4.getTransposed()
           
 Transform.Matrix4x4 Transform.Matrix4x4.getInverted()
           
 Transform.Matrix4x4 Transform.Matrix4x4.invert()
           
 Transform.Matrix4x4 Transform.Matrix4x4.getApplied(Transform.Matrix4x4 mat)
           
 Transform.Matrix4x4 Transform.Matrix4x4.apply(Transform.Matrix4x4 mat)
           
 

Methods in y25.graphics with parameters of type Transform.Matrix4x4
 Transform.Matrix4x4 Transform.Matrix4x4.getApplied(Transform.Matrix4x4 mat)
           
 Transform.Matrix4x4 Transform.Matrix4x4.apply(Transform.Matrix4x4 mat)
           
 

Constructors in y25.graphics with parameters of type Transform.Matrix4x4
Transform(Transform.Matrix4x4 trans)
          Creates a transform by means of a user specified transformation matrix.
Transform(Transform.Matrix4x4 trans, Transform.Matrix4x4 inv)
          Creates a transform by means of a user specified transformation matrix and its inverse.
Transform.Matrix4x4(Transform.Matrix4x4 mat)