Class Matrices4x4D
java.lang.Object
com.io7m.jtensors.core.unparameterized.matrices.Matrices4x4D
Functions over Matrix4x4D values.
See "Mathematics for 3D Game Programming and Computer Graphics" 2nd Ed for the derivations of most of the code in this class (ISBN: 1-58450-277-0).
- Since:
- 8.0.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic Matrix4x4Dadd(Matrix4x4D m0, Matrix4x4D m1) Add the matricesm0andm1.static Vector4Dstatic Vector4Dstatic Vector4Dstatic Vector4Dstatic doubleCalculate the determinant of the matrixm.static Matrix4x4Didentity()The identity matrix.static Optional<Matrix4x4D> invert(Matrix4x4D m) Calculate the inverse of the matrixm.static Matrix4x4Dmultiply(Matrix4x4D m0, Matrix4x4D m1) Multiply the matricesm0andm1.static Vector4DMultiply the vectorvby the matrixm.static Matrix4x4DofAxisAngle(double axis_x, double axis_y, double axis_z, double angle) Construct a matrix that will rotate byangleradians around the axis(x, y, z).static Matrix4x4DConstruct a matrix from the column vectors(c0, c1, c2, c3).static Matrix4x4DConstruct a matrix from the row vectors(r0, r1, r2, r3).static Matrix4x4DofScale(double x, double y, double z) Construct a matrix that will scale by(x, y, z).static Matrix4x4DofTranslation(double x, double y, double z) Construct a matrix that will translate by(x, y, z).static Vector4Drow0(Matrix4x4D m) static Vector4Drow1(Matrix4x4D m) static Vector4Drow2(Matrix4x4D m) static Vector4Drow3(Matrix4x4D m) static Matrix4x4Dscale(Matrix4x4D m, double r) Scale the matrixmbyr.static Matrix4x4Dsubtract(Matrix4x4D m0, Matrix4x4D m1) Subtract the matricesm0andm1.static doubletrace(Matrix4x4D m) Return the trace of the matrixm.static Matrix4x4DCalculate the transpose of the matrixm.static Matrix4x4DwithColumn(Matrix4x4D m, int column, double r0, double r1, double r2, double r3) Set the columncolumnofmto(r0, r1, r2, r3).static Matrix4x4DwithRow(Matrix4x4D m, int row, double c0, double c1, double c2, double c3) Set the rowrowofmto(c0, c1, c2, c3).static Matrix4x4Dzero()The zero matrix.
-
Method Details
-
add
Add the matricesm0andm1.- Parameters:
m0- The left matrixm1- The right matrix- Returns:
m0 + m1
-
determinant
Calculate the determinant of the matrixm.- Parameters:
m- The matrix- Returns:
- The determinant of
m
-
invert
Calculate the inverse of the matrixm.- Parameters:
m- The matrix- Returns:
- The inverse of
m, or nothing if no inverse exists
-
multiply
Multiply the matricesm0andm1.- Parameters:
m0- The left matrixm1- The right matrix- Returns:
m0 * m1
-
multiplyVectorPost
Multiply the vector
vby the matrixm.This is post multiplication.
- Parameters:
m- The matrixv- The vector- Returns:
m * v
-
ofColumns
Construct a matrix from the column vectors(c0, c1, c2, c3).- Parameters:
c0- The column 0c1- The column 1c2- The column 2c3- The column 3- Returns:
- A constructed matrix
-
ofRows
Construct a matrix from the row vectors(r0, r1, r2, r3).- Parameters:
r0- The row 0r1- The row 1r2- The row 2r3- The row 3- Returns:
- A constructed matrix
-
ofScale
Construct a matrix that will scale by(x, y, z).- Parameters:
x- The X scaling valuey- The Y scaling valuez- The Z scaling value- Returns:
- A constructed matrix
-
ofTranslation
Construct a matrix that will translate by(x, y, z).- Parameters:
x- The X scaling valuey- The Y scaling valuez- The Z scaling value- Returns:
- A constructed matrix
-
ofAxisAngle
Construct a matrix that will rotate byangleradians around the axis(x, y, z).- Parameters:
axis_x- The X axis valueaxis_y- The Y axis valueaxis_z- The Z axis valueangle- The angle in radians- Returns:
- A constructed matrix
-
row0
- Parameters:
m- The matrix- Returns:
- Row 0 of the matrix
-
row1
- Parameters:
m- The matrix- Returns:
- Row 1 of the matrix
-
row2
- Parameters:
m- The matrix- Returns:
- Row 2 of the matrix
-
row3
- Parameters:
m- The matrix- Returns:
- Row 3 of the matrix
-
column0
- Parameters:
m- The matrix- Returns:
- Column 0 of the matrix
-
column1
- Parameters:
m- The matrix- Returns:
- Column 1 of the matrix
-
column2
- Parameters:
m- The matrix- Returns:
- Column 2 of the matrix
-
column3
- Parameters:
m- The matrix- Returns:
- Column 3 of the matrix
-
scale
Scale the matrixmbyr.- Parameters:
m- The matrixr- The scale factor- Returns:
m * r
-
subtract
Subtract the matricesm0andm1.- Parameters:
m0- The left matrixm1- The right matrix- Returns:
m0 - m1
-
trace
Return the trace of the matrixm. The trace is defined as the sum of the diagonal elements of the matrix.- Parameters:
m- The matrix- Returns:
- The trace of the matrix
-
transpose
Calculate the transpose of the matrixm.- Parameters:
m- The matrix- Returns:
- The transpose of
m
-
withColumn
public static Matrix4x4D withColumn(Matrix4x4D m, int column, double r0, double r1, double r2, double r3) Set the columncolumnofmto(r0, r1, r2, r3).- Parameters:
m- The matrixcolumn- The column index in the range[0, 3]* @param r0 The value of row 0 in the columnr1- The value of row 1 in the columnr2- The value of row 2 in the columnr3- The value of row 3 in the column- Returns:
- A matrix with the given row
-
withRow
Set the rowrowofmto(c0, c1, c2, c3).- Parameters:
m- The matrixrow- The row index in the range[0, 3]c0- The value of column 0 in the rowc1- The value of column 1 in the rowc2- The value of column 2 in the rowc3- The value of column 3 in the row- Returns:
- A matrix with the given row
-
zero
-
identity
The identity matrix.- Returns:
- A matrix with all diagonal components set to 1 and all other components set to 0.
-