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 .
|
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) .
|
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 |
Matrix4d.mul(Matrix3x2dc right) |
Multiply this matrix by the supplied right matrix and store the result in this .
|
Matrix4d |
Matrix4d.mul(Matrix3x2dc right,
Matrix4d dest) |
|
Matrix4d |
Matrix4dc.mul(Matrix3x2dc right,
Matrix4d dest) |
Multiply this matrix by the supplied right matrix and store the result in dest .
|
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 .
|
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 .
|