Uses of Class
jme.math.Matrix

Packages that use Matrix
jme.geometry.bounding   
jme.geometry.model   
jme.math   
 

Uses of Matrix in jme.geometry.bounding
 

Constructors in jme.geometry.bounding with parameters of type Matrix
BoundingEllipsoid(Vector center, Matrix a, Matrix inverseA)
          Constructor instantiates a new BoundingEllipsoid with given parameters.
 

Uses of Matrix in jme.geometry.model
 

Fields in jme.geometry.model declared as Matrix
 Matrix Joint.relativeMatrix
          The transformation of a joint from its parent.
 Matrix Joint.absoluteMatrix
          The original transformation of the joint.
 Matrix Joint.relativeFinalMatrix
          The helper matrix for calculating the final matrix.
 Matrix Joint.finalMatrix
          The final result of all transformations in the skeleton.
 

Uses of Matrix in jme.math
 

Methods in jme.math that return Matrix
 Matrix Matrix.multiply(Matrix in2)
          multiply multiplies this matrix with another matrix.
 

Methods in jme.math with parameters of type Matrix
 void Matrix.copy(Matrix matrix)
           
 void Matrix.add(Matrix matrix)
          add adds the values of a parameter matrix to this matrix.
 Matrix Matrix.multiply(Matrix in2)
          multiply multiplies this matrix with another matrix.
 Vector Vector.rotate(Matrix m)
          rotate rotates a vector about a rotation matrix.
 Vector Vector.inverseRotate(Matrix m)
           
 

Constructors in jme.math with parameters of type Matrix
Matrix(Matrix mat)
          Constructor instantiates a new Matrix that is set to the provided matrix.