Class Matrices3x3D
java.lang.Object
com.io7m.jtensors.core.unparameterized.matrices.Matrices3x3D
Functions over Matrix3x3D 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 Matrix3x3Dadd(Matrix3x3D m0, Matrix3x3D m1) Add the matricesm0andm1.static Vector3Dstatic Vector3Dstatic Vector3Dstatic doubleCalculate the determinant of the matrixm.static Matrix3x3Didentity()The identity matrix.static Optional<Matrix3x3D> invert(Matrix3x3D m) Calculate the inverse of the matrixm.static Matrix3x3Dmultiply(Matrix3x3D m0, Matrix3x3D m1) Multiply the matricesm0andm1.static Vector3DMultiply the vectorvby the matrixm.static Matrix3x3DofAxisAngle(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 Matrix3x3DConstruct a matrix from the column vectors(c0, c1, c2).static Matrix3x3DConstruct a matrix from the row vectors(r0, r1, r2).static Matrix3x3DofScale(double x, double y, double z) Construct a matrix that will scale by(x, y, z).static Vector3Drow0(Matrix3x3D m) static Vector3Drow1(Matrix3x3D m) static Vector3Drow2(Matrix3x3D m) static Matrix3x3Dscale(Matrix3x3D m, double r) Scale the matrixmbyr.static Matrix3x3Dsubtract(Matrix3x3D m0, Matrix3x3D m1) Subtract the matricesm0andm1.static doubletrace(Matrix3x3D m) Return the trace of the matrixm.static Matrix3x3DCalculate the transpose of the matrixm.static Matrix3x3DwithColumn(Matrix3x3D m, int column, double r0, double r1, double r2) Set the columncolumnofmto(r0, r1, r2).static Matrix3x3DwithRow(Matrix3x3D m, int row, double c0, double c1, double c2) Set the rowrowofmto(c0, c1, c2).static Matrix3x3Dzero()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).- Parameters:
c0- The column 0c1- The column 1c2- The column 2- Returns:
- A constructed matrix
-
ofRows
Construct a matrix from the row vectors(r0, r1, r2).- Parameters:
r0- The row 0r1- The row 1r2- The row 2- 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
-
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
-
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
-
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
Set the columncolumnofmto(r0, r1, r2).- Parameters:
m- The matrixcolumn- The column index in the range[0, 2]* @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 column- Returns:
- A matrix with the given row
-
withRow
Set the rowrowofmto(c0, c1, c2).- Parameters:
m- The matrixrow- The row index in the range[0, 2]c0- The value of column 0 in the rowc1- The value of column 1 in the rowc2- The value of column 2 in the row- Returns:
- A matrix with the given row
-
zero
The zero matrix.- Returns:
- A matrix with all zero components
-
identity
The identity matrix.- Returns:
- A matrix with all diagonal components set to 1 and all other components set to 0.
-