Matrix3 class

3D Matrix. Values are stored in column major order.

Constructors

Matrix3(double arg0, double arg1, double arg2, double arg3, double arg4, double arg5, double arg6, double arg7, double arg8)
New matrix with specified values.
factory
Matrix3.columns(Vector3 arg0, Vector3 arg1, Vector3 arg2)
Constructs a new mat3 from columns.
factory
Matrix3.copy(Matrix3 other)
Copes values from other.
factory
Matrix3.fromList(List<double> values)
New matrix from values.
factory
Matrix3.identity()
Identity matrix.
factory
Matrix3.outer(Vector3 u, Vector3 v)
Outer product of u and v.
factory
Matrix3.rotationX(double radians)
Rotation of radians around X axis.
factory
Matrix3.rotationY(double radians)
Rotation of radians around Y axis.
factory