public class Matrix3x3
extends java.lang.Object
| Modifier and Type | Field | Description |
|---|---|---|
float[] |
data |
| Modifier and Type | Method | Description |
|---|---|---|
protected static float[] |
_mul(float[] d1,
float[] d2) |
|
Matrix3x3 |
clone() |
|
static Matrix3x3 |
makeIdentity() |
|
static Matrix3x3 |
makeRotation(float rad,
float x,
float y,
float z) |
|
static Matrix3x3 |
makeXRotation(float rad) |
|
static Matrix3x3 |
makeYRotation(float rad) |
|
static Matrix3x3 |
makeZRotation(float rad) |
|
Matrix3x3 |
multiply(Matrix3x3 mat) |
|
Matrix3x3 |
multiplyBy(Matrix3x3 mat) |
public static Matrix3x3 makeIdentity()
public static Matrix3x3 makeRotation(float rad, float x, float y, float z)
public static Matrix3x3 makeXRotation(float rad)
public static Matrix3x3 makeYRotation(float rad)
public static Matrix3x3 makeZRotation(float rad)
protected static float[] _mul(float[] d1,
float[] d2)
public Matrix3x3 clone()
clone in class java.lang.Object