Uses of Interface
org.joml.Matrix2fc
Packages that use Matrix2fc
-
Uses of Matrix2fc in org.joml
Modifier and TypeClassDescriptionclass
Contains the definition of a 2x2 matrix of floats, and associated functions to transform it.Modifier and TypeMethodDescriptionMatrix2f.getToAddress
(long address) Matrix2fc.getToAddress
(long address) Store this matrix in column-major order at the given off-heap address.Modifier and TypeMethodDescriptionComponent-wise addthis
andother
.Component-wise addthis
andother
and store the result indest
.boolean
boolean
Compare the matrix elements ofthis
matrix with the given matrix using the givendelta
and return whether all of them are equal within a maximum difference ofdelta
.Linearly interpolatethis
andother
using the given interpolation factort
and store the result inthis
.Linearly interpolatethis
andother
using the given interpolation factort
and store the result indest
.Multiply this matrix by the suppliedright
matrix.Multiply this matrix by the suppliedright
matrix and store the result indest
.Multiply this matrix by the suppliedright
matrix.Multiply this matrix by the suppliedright
matrix and store the result indest
.Multiply the given matrixmat
with this Vector2d.Multiply the given matrixmat
withthis
and store the result indest
.Multiply the given matrix with this Vector2f and store the result inthis
.Multiply the given matrix with this Vector2f and store the result indest
.Matrix2f.mulComponentWise
(Matrix2fc other) Component-wise multiplythis
byother
.Matrix2f.mulComponentWise
(Matrix2fc other, Matrix2f dest) Matrix2fc.mulComponentWise
(Matrix2fc other, Matrix2f dest) Component-wise multiplythis
byother
and store the result indest
.Pre-multiply this matrix by the suppliedleft
matrix and store the result inthis
.Pre-multiply this matrix by the suppliedleft
matrix and store the result indest
.Vector2d.mulTranspose
(Matrix2fc mat) Multiply the transpose of the given matrix with this Vector2d and store the result inthis
.Vector2d.mulTranspose
(Matrix2fc mat, Vector2d dest) Vector2dc.mulTranspose
(Matrix2fc mat, Vector2d dest) Multiply the transpose of the given matrix with this Vector2f and store the result indest
.Vector2f.mulTranspose
(Matrix2fc mat) Multiply the transpose of the given matrix with this Vector2f store the result inthis
.Vector2f.mulTranspose
(Matrix2fc mat, Vector2f dest) Vector2fc.mulTranspose
(Matrix2fc mat, Vector2f dest) Multiply the transpose of the given matrix with this Vector3f and store the result indest
.Set the elements of this matrix to the ones inm
.Set the elements of this matrix to the ones inm
.Set the left 2x2 submatrix of thisMatrix3x2d
to the givenMatrix2fc
and don't change the other elements.Set the left 2x2 submatrix of thisMatrix3x2f
to the givenMatrix2fc
and don't change the other elements.Component-wise subtractsubtrahend
fromthis
.Component-wise subtractsubtrahend
fromthis
and store the result indest
.ModifierConstructorDescriptionCreate a newMatrix2d
and initialize it with the values from the given matrix.Create a newMatrix2f
and make it a copy of the given matrix.Matrix3x2d
(Matrix2fc mat) Create a newMatrix3x2d
by setting its left 2x2 submatrix to the values of the givenMatrix2fc
and the rest to identity.Matrix3x2f
(Matrix2fc mat) Create a newMatrix3x2f
by setting its left 2x2 submatrix to the values of the givenMatrix2fc
and the rest to identity.