Uses of Class
math.Matrix4x4

Packages that use Matrix4x4
math   
 

Uses of Matrix4x4 in math
 

Methods in math that return Matrix4x4
 Matrix4x4 OrthonormalBasis.getBasisToCanonicalMatrix()
          creates the basis transformation matrix to change from the local basis to the canonical basis
 Matrix4x4 OrthonormalBasis.getCanonicalToBasisMatrix()
          creates the basis transformation matrix to change from the canonical basis to the local basis
 Matrix4x4 TransformationMatrix4x4.getInverseMatrix()
           
 Matrix4x4 TransformationMatrix4x4.getMatrix()
           
static Matrix4x4 MatrixOps.mkFromQuaternion(Quaternion a)
          creates a 4x4-matrix from a quaternion number
static Matrix4x4 MatrixOps.multiply(Matrix4x4 m1, Matrix4x4 m2)
          multiplication of two matrices
static Matrix4x4 MatrixOps.transpose(Matrix4x4 m)
          returns a transposed matrix
 

Methods in math with parameters of type Matrix4x4
static Matrix4x4 MatrixOps.multiply(Matrix4x4 m1, Matrix4x4 m2)
          multiplication of two matrices
static Vector MatrixOps.multiply(Matrix4x4 m, Vector v)
          multiplies a matrix with a 4 vector
static Vector MatrixOps.multiply(Vector v, Matrix4x4 m)
          multiplies a matrix from left with a vector
static Point3D MatrixOps.transform(Matrix4x4 m, Point3D p)
          multiplies a matrix with a 3D point
static Vector3D MatrixOps.transform(Matrix4x4 m, Vector3D v)
          multiplies a matrix with a 3-vector
static Matrix4x4 MatrixOps.transpose(Matrix4x4 m)
          returns a transposed matrix
 

Constructors in math with parameters of type Matrix4x4
Matrix4x4(Matrix4x4 m)
          copy constructor
TransformationMatrix4x4(Matrix4x4 m, Matrix4x4 im)
          manually sets the matrix and its inverse