public class Matrix3d
extends java.lang.Object
Constructor and Description |
---|
Matrix3d() |
Modifier and Type | Method and Description |
---|---|
void |
finalize() |
Matrix3d |
inverse()
Return the inverse of this matrix.
|
Matrix3d |
multiply(Matrix3d matrix) |
Point3d |
multiply(Point3d vec)
Multiply the vector by this matrix and return the result.
|
static Matrix3d |
scale(double x,
double y) |
static Matrix3d |
translate(double x,
double y) |
Matrix3d |
transpose()
Transpose and return the matrix.
|
public void finalize()
finalize
in class java.lang.Object
public Matrix3d inverse()
public Matrix3d transpose()
public Point3d multiply(Point3d vec)
public static Matrix3d translate(double x, double y)
public static Matrix3d scale(double x, double y)