|
@@ -92,6 +92,9 @@ m.elements = [ 11, 21, 31,
|
|
|
[link:https://en.wikipedia.org/wiki/Determinant determinant] of this matrix.
|
|
|
</div>
|
|
|
|
|
|
+ <h3>[method:Boolean equals]( [page:Matrix3 m] )</h3>
|
|
|
+ <div>Return true if this matrix and [page:Matrix3 m] are equal.</div>
|
|
|
+
|
|
|
<h3>[method:Matrix3 fromArray]( [page:Array array], [page:Integer offset] )</h3>
|
|
|
<div>
|
|
|
[page:Array array] - the array to read the elements from.<br />
|
|
@@ -132,6 +135,12 @@ m.elements = [ 11, 21, 31,
|
|
|
|
|
|
</div>
|
|
|
|
|
|
+ <h3>[method:Matrix3 multiply]( [page:Matrix3 m] )</h3>
|
|
|
+ <div>Post-multiplies this matrix by [page:Matrix3 m].</div>
|
|
|
+
|
|
|
+ <h3>[method:Matrix3 multiplyMatrices]( [page:Matrix3 a], [page:Matrix3 b] )</h3>
|
|
|
+ <div>Sets this matrix to [page:Matrix3 a] x [page:Matrix3 b].</div>
|
|
|
+
|
|
|
<h3>[method:Matrix3 multiplyScalar]( [page:Float s] )</h3>
|
|
|
<div>Multiplies every component of the matrix by the scalar value *s*.</div>
|
|
|
|
|
@@ -154,6 +163,9 @@ m.elements = [ 11, 21, 31,
|
|
|
sequence of values.
|
|
|
</div>
|
|
|
|
|
|
+ <h3>[method:Matrix3 premultiply]( [page:Matrix3 m] )</h3>
|
|
|
+ <div>Pre-multiplies this matrix by [page:Matrix3 m].</div>
|
|
|
+
|
|
|
<h3>[method:Matrix3 setFromMatrix4]( [page:Matrix4 m] )</h3>
|
|
|
<div>Set this matrx to the upper 3x3 matrix of the Matrix4 [page:Matrix4 m].</div>
|
|
|
|