Uses of Class
org.deepjava.runtime.util.Matrix
-
Packages that use Matrix Package Description org.deepjava.runtime.util -
-
Uses of Matrix in org.deepjava.runtime.util
Subclasses of Matrix in org.deepjava.runtime.util Modifier and Type Class Description class
Vector
This class implements a n-dimensional vector.class
Vector3
This class implements a 3-dimensional vector.class
Vector4
This class implements a 4-dimensional vector.Methods in org.deepjava.runtime.util that return Matrix Modifier and Type Method Description Matrix
Matrix. clone()
Creates and returns a copy of this object.static Matrix
Matrix. rot3x(double angle)
Methods in org.deepjava.runtime.util with parameters of type Matrix Modifier and Type Method Description boolean
Matrix. add(Matrix left, Matrix right)
Adds two matrices and stores the result in this instance.boolean
Matrix. copy(Matrix M)
Copies the content of matrixM
into this matrix.boolean
Matrix. isEqual(Matrix M)
Compares this object against the specified object.boolean
Matrix. multiply(Matrix left, Matrix right)
Multiplies two matrices and stores the result in this instance.static boolean
Matrix. rot3x(Matrix A, double angle)
boolean
Matrix. transpose(Matrix original)
Constructors in org.deepjava.runtime.util with parameters of type Matrix Constructor Description Matrix(Matrix M)
Creates a new copy of aMatrix
from a given matrixM
.
-