Uses of Interface
org.joml.Matrix3x2fc
Packages that use Matrix3x2fc
-
Uses of Matrix3x2fc in org.joml
Classes in org.joml that implement Matrix3x2fcModifier and TypeClassDescriptionclassContains the definition of a 3x2 matrix of floats, and associated functions to transform it.classA stack of manyMatrix3x2finstances.Methods in org.joml that return Matrix3x2fcModifier and TypeMethodDescriptionMatrix3x2f.getToAddress(long address) Matrix3x2fc.getToAddress(long address) Store this matrix in column-major order at the given off-heap address.Methods in org.joml with parameters of type Matrix3x2fcModifier and TypeMethodDescriptionbooleanMatrix3x2f.equals(Matrix3x2fc m, float delta) booleanMatrix3x2fc.equals(Matrix3x2fc m, float delta) Compare the matrix elements ofthismatrix with the given matrix using the givendeltaand return whether all of them are equal within a maximum difference ofdelta.Matrix3x2f.mul(Matrix3x2fc right) Multiply this matrix by the suppliedrightmatrix by assuming a third row in both matrices of(0, 0, 1).Matrix3x2f.mul(Matrix3x2fc right, Matrix3x2f dest) Multiply this matrix by the suppliedrightmatrix by assuming a third row in both matrices of(0, 0, 1)and store the result indest.Matrix3x2fc.mul(Matrix3x2fc right, Matrix3x2f dest) Multiply this matrix by the suppliedrightmatrix by assuming a third row in both matrices of(0, 0, 1)and store the result indest.Matrix4d.mul(Matrix3x2fc right) Multiply this matrix by the suppliedrightmatrix and store the result inthis.Matrix4d.mul(Matrix3x2fc right, Matrix4d dest) Matrix4dc.mul(Matrix3x2fc right, Matrix4d dest) Multiply this matrix by the suppliedrightmatrix and store the result indest.Matrix4f.mul(Matrix3x2fc right) Multiply this matrix by the suppliedrightmatrix and store the result inthis.Matrix4f.mul(Matrix3x2fc right, Matrix4f dest) Matrix4fc.mul(Matrix3x2fc right, Matrix4f dest) Multiply this matrix by the suppliedrightmatrix and store the result indest.Vector3d.mul(Matrix3x2fc mat) Multiply the given matrix with this Vector3d by assuming a third row in the matrix of(0, 0, 1)and store the result inthis.Vector3d.mul(Matrix3x2fc mat, Vector3d dest) Vector3dc.mul(Matrix3x2fc mat, Vector3d dest) Multiply the given matrixmatwiththisby assuming a third row in the matrix of(0, 0, 1)and store the result indest.Vector3f.mul(Matrix3x2fc mat) Multiply the given matrix with this Vector3f and store the result inthis.Vector3f.mul(Matrix3x2fc mat, Vector3f dest) Vector3fc.mul(Matrix3x2fc mat, Vector3f dest) Multiply the given matrixmatwiththisby assuming a third row in the matrix of(0, 0, 1)and store the result indest.Vector2f.mulDirection(Matrix3x2fc mat) Multiply the given 3x2 matrixmatwiththis.Vector2f.mulDirection(Matrix3x2fc mat, Vector2f dest) Vector2fc.mulDirection(Matrix3x2fc mat, Vector2f dest) Multiply the given 3x2 matrixmatwiththisand store the result indest.Matrix3x2f.mulLocal(Matrix3x2fc left) Pre-multiply this matrix by the suppliedleftmatrix and store the result inthis.Matrix3x2f.mulLocal(Matrix3x2fc left, Matrix3x2f dest) Matrix3x2fc.mulLocal(Matrix3x2fc left, Matrix3x2f dest) Pre-multiply this matrix by the suppliedleftmatrix and store the result indest.Vector2f.mulPosition(Matrix3x2fc mat) Multiply the given 3x2 matrixmatwiththis.Vector2f.mulPosition(Matrix3x2fc mat, Vector2f dest) Vector2fc.mulPosition(Matrix3x2fc mat, Vector2f dest) Multiply the given 3x2 matrixmatwiththisand store the result indest.Matrix2d.set(Matrix3x2fc m) Set the elements of this matrix to the left 2x2 submatrix ofm.Matrix2f.set(Matrix3x2fc m) Set the elements of this matrix to the left 2x2 submatrix ofm.Matrix3x2f.set(Matrix3x2fc m) Set the elements of this matrix to the ones inm.Constructors in org.joml with parameters of type Matrix3x2fcModifierConstructorDescriptionMatrix3x2f(Matrix3x2fc mat) Create a newMatrix3x2fand make it a copy of the given matrix.