diff --git a/docs/api/math/Matrix3.html b/docs/api/math/Matrix3.html index 4625ec4cd34319ed827e2f3a6a476debe3d7c5eb..bc61e89ac034d550c270658b0d89c870cd46113b 100644 --- a/docs/api/math/Matrix3.html +++ b/docs/api/math/Matrix3.html @@ -92,6 +92,9 @@ m.elements = [ 11, 21, 31, [link:https://en.wikipedia.org/wiki/Determinant determinant] of this matrix. +

[method:Boolean equals]( [page:Matrix3 m] )

+
Return true if this matrix and [page:Matrix3 m] are equal.
+

[method:Matrix3 fromArray]( [page:Array array], [page:Integer offset] )

[page:Array array] - the array to read the elements from.
@@ -132,6 +135,12 @@ m.elements = [ 11, 21, 31,
+

[method:Matrix3 multiply]( [page:Matrix3 m] )

+
Post-multiplies this matrix by [page:Matrix3 m].
+ +

[method:Matrix3 multiplyMatrices]( [page:Matrix3 a], [page:Matrix3 b] )

+
Sets this matrix to [page:Matrix3 a] x [page:Matrix3 b].
+

[method:Matrix3 multiplyScalar]( [page:Float s] )

Multiplies every component of the matrix by the scalar value *s*.
@@ -154,6 +163,9 @@ m.elements = [ 11, 21, 31, sequence of values. +

[method:Matrix3 premultiply]( [page:Matrix3 m] )

+
Pre-multiplies this matrix by [page:Matrix3 m].
+

[method:Matrix3 setFromMatrix4]( [page:Matrix4 m] )

Set this matrx to the upper 3x3 matrix of the Matrix4 [page:Matrix4 m].