| Package | Description |
|---|---|
| org.joml |
Contains all classes of JOML.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Matrix3x2d
Contains the definition of a 3x2 matrix of doubles, and associated functions to transform
it.
|
class |
Matrix3x2dStack
A stack of many
Matrix3x2d instances. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Matrix3x2d.equals(Matrix3x2dc m,
double delta) |
boolean |
Matrix3x2dc.equals(Matrix3x2dc m,
double delta)
Compare the matrix elements of
this matrix with the given matrix using the given delta
and return whether all of them are equal within a maximum difference of delta. |
Vector3d |
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 in this. |
Matrix3x2d |
Matrix3x2d.mul(Matrix3x2dc right)
Multiply this matrix by the supplied
right matrix by assuming a third row in
both matrices of (0, 0, 1). |
Matrix4d |
Matrix4d.mul(Matrix3x2dc right)
Multiply this matrix by the supplied
right matrix and store the result in this. |
Matrix3x2d |
Matrix3x2d.mul(Matrix3x2dc right,
Matrix3x2d dest)
Multiply this matrix by the supplied
right matrix by assuming a third row in
both matrices of (0, 0, 1) and store the result in dest. |
Matrix3x2d |
Matrix3x2dc.mul(Matrix3x2dc right,
Matrix3x2d dest)
Multiply this matrix by the supplied
right matrix by assuming a third row in
both matrices of (0, 0, 1) and store the result in dest. |
Matrix4d |
Matrix4dc.mul(Matrix3x2dc right,
Matrix4d dest)
Multiply this matrix by the supplied
right matrix and store the result in dest. |
Matrix4d |
Matrix4d.mul(Matrix3x2dc right,
Matrix4d dest) |
Vector3d |
Vector3d.mul(Matrix3x2dc mat,
Vector3d dest) |
Vector3d |
Vector3dc.mul(Matrix3x2dc mat,
Vector3d dest)
Multiply the given matrix
mat with this by assuming a
third row in the matrix of (0, 0, 1) and store the result in dest. |
Vector2d |
Vector2d.mulDirection(Matrix3x2dc mat)
Multiply the given 3x2 matrix
mat with this. |
Vector2d |
Vector2d.mulDirection(Matrix3x2dc mat,
Vector2d dest) |
Vector2d |
Vector2dc.mulDirection(Matrix3x2dc mat,
Vector2d dest)
Multiply the given 3x2 matrix
mat with this and store the
result in dest. |
Matrix3x2d |
Matrix3x2d.mulLocal(Matrix3x2dc left)
Pre-multiply this matrix by the supplied
left matrix and store the result in this. |
Matrix3x2d |
Matrix3x2d.mulLocal(Matrix3x2dc left,
Matrix3x2d dest) |
Matrix3x2d |
Matrix3x2dc.mulLocal(Matrix3x2dc left,
Matrix3x2d dest)
Pre-multiply this matrix by the supplied
left matrix and store the result in dest. |
Vector2d |
Vector2d.mulPosition(Matrix3x2dc mat)
Multiply the given 3x2 matrix
mat with this. |
Vector2d |
Vector2d.mulPosition(Matrix3x2dc mat,
Vector2d dest) |
Vector2d |
Vector2dc.mulPosition(Matrix3x2dc mat,
Vector2d dest)
Multiply the given 3x2 matrix
mat with this and store the
result in dest. |
Matrix2d |
Matrix2d.set(Matrix3x2dc m)
Set the elements of this matrix to the left 2x2 submatrix of
m. |
Matrix3x2d |
Matrix3x2d.set(Matrix3x2dc m)
Set the elements of this matrix to the ones in
m. |
| Constructor and Description |
|---|
Matrix3x2d(Matrix3x2dc mat)
Create a new
Matrix3x2d and make it a copy of the given matrix. |
Copyright © 2015–2019 JOML. All rights reserved.