Uses of Interface
org.joml.Matrix3x2dc
Packages that use Matrix3x2dc
-
Uses of Matrix3x2dc in org.joml
Classes in org.joml that implement Matrix3x2dcModifier and TypeClassDescriptionclassContains the definition of a 3x2 matrix of doubles, and associated functions to transform it.classA stack of manyMatrix3x2dinstances.Methods in org.joml that return Matrix3x2dcModifier and TypeMethodDescriptionMatrix3x2d.getToAddress(long address) Matrix3x2dc.getToAddress(long address) Store this matrix in column-major order at the given off-heap address.Methods in org.joml with parameters of type Matrix3x2dcModifier and TypeMethodDescriptionbooleanMatrix3x2d.equals(Matrix3x2dc m, double delta) booleanMatrix3x2dc.equals(Matrix3x2dc m, double 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.Matrix3x2d.mul(Matrix3x2dc right) Multiply this matrix by the suppliedrightmatrix by assuming a third row in both matrices of(0, 0, 1).Matrix3x2d.mul(Matrix3x2dc right, Matrix3x2d dest) Multiply this matrix by the suppliedrightmatrix by assuming a third row in both matrices of(0, 0, 1)and store the result indest.Matrix3x2dc.mul(Matrix3x2dc right, Matrix3x2d 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(Matrix3x2dc right) Multiply this matrix by the suppliedrightmatrix and store the result inthis.Matrix4d.mul(Matrix3x2dc right, Matrix4d dest) Matrix4dc.mul(Matrix3x2dc right, Matrix4d dest) Multiply this matrix by the suppliedrightmatrix and store the result indest.Vector3d.mul(Matrix3x2dc 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(Matrix3x2dc mat, Vector3d dest) Vector3dc.mul(Matrix3x2dc mat, Vector3d dest) Multiply the given matrixmatwiththisby assuming a third row in the matrix of(0, 0, 1)and store the result indest.Vector2d.mulDirection(Matrix3x2dc mat) Multiply the given 3x2 matrixmatwiththis.Vector2d.mulDirection(Matrix3x2dc mat, Vector2d dest) Vector2dc.mulDirection(Matrix3x2dc mat, Vector2d dest) Multiply the given 3x2 matrixmatwiththisand store the result indest.Matrix3x2d.mulLocal(Matrix3x2dc left) Pre-multiply this matrix by the suppliedleftmatrix and store the result inthis.Matrix3x2d.mulLocal(Matrix3x2dc left, Matrix3x2d dest) Matrix3x2dc.mulLocal(Matrix3x2dc left, Matrix3x2d dest) Pre-multiply this matrix by the suppliedleftmatrix and store the result indest.Vector2d.mulPosition(Matrix3x2dc mat) Multiply the given 3x2 matrixmatwiththis.Vector2d.mulPosition(Matrix3x2dc mat, Vector2d dest) Vector2dc.mulPosition(Matrix3x2dc mat, Vector2d dest) Multiply the given 3x2 matrixmatwiththisand store the result indest.Matrix2d.set(Matrix3x2dc m) Set the elements of this matrix to the left 2x2 submatrix ofm.Matrix3x2d.set(Matrix3x2dc m) Set the elements of this matrix to the ones inm.Constructors in org.joml with parameters of type Matrix3x2dcModifierConstructorDescriptionMatrix3x2d(Matrix3x2dc mat) Create a newMatrix3x2dand make it a copy of the given matrix.