public class Matrix3d
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
double |
m11
The m13.
|
double |
m12
The m13.
|
double |
m13
The m13.
|
double |
m21
The m23.
|
double |
m22
The m23.
|
double |
m23
The m23.
|
double |
m31
The m33.
|
double |
m32
The m33.
|
double |
m33
The m33.
|
static Matrix3d |
UNITY
The Constant UNITY.
|
static Matrix3d |
ZERO
The Constant ZERO.
|
| Constructor and Description |
|---|
Matrix3d(double m11,
double m12,
double m13,
double m21,
double m22,
double m23,
double m31,
double m32,
double m33)
Instantiates a new matrix3d.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
Matrix3d |
times(double a)
Returns the product of this matrix and the specified value.
|
Vector3d |
times(Vector3d a)
Returns the product of this matrix and the specified vector.
|
java.lang.String |
toString() |
public double m11
public double m12
public double m13
public double m21
public double m22
public double m23
public double m31
public double m32
public double m33
public static final Matrix3d ZERO
public static final Matrix3d UNITY
public Matrix3d(double m11,
double m12,
double m13,
double m21,
double m22,
double m23,
double m31,
double m32,
double m33)
m11 - the m11m12 - the m12m13 - the m13m21 - the m21m22 - the m22m23 - the m23m31 - the m31m32 - the m32m33 - the m33public java.lang.String toString()
toString in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic Matrix3d times(double a)
a - the value
Note: this matrix is not modified.