-
Matrix4d.add(double scalar)
Returns a copy of this matrix after adding a scalar to each component of
this matrix.
Returns a copy of this matrix after calculating the sum of this matrix
and the given matrix.
Returns a new identity matrix.
MMatrix4d.create(double[] elements)
Constructs a matrix with the given array of 16 elements or 12 elements.
MMatrix4d.create(double m00,
double m01,
double m02,
double m03,
double m10,
double m11,
double m12,
double m13,
double m20,
double m21,
double m22,
double m23,
double m30,
double m31,
double m32,
double m33)
Constructs a matrix with the given 16 elements.
Returns a new matrix with the values of the given matrix.
Returns a copy of this matrix after calculating the product of this
matrix and the given matrix.
Returns the product of the two inputed matrixes.
Returns a copy of this matrix after calculating the difference between
this matrix and the given matrix.