@@ -16,26 +16,9 @@ <h1>[name]</h1>
1616 < h2 > Constructor</ h2 >
1717
1818
19- < h3 > [name]([page:Float n11], [page:Float n12], [page:Float n13], [page:Float n21], [page:Float n22], [page:Float n23], [page:Float n31], [page:Float n32], [page:Float n33] )</ h3 >
19+ < h3 > [name]()</ h3 >
2020 < div >
21- n11 -- [page:Float] < br />
22- n12 -- [page:Float] < br />
23- n13 -- [page:Float] < br />
24- n21 -- [page:Float] < br />
25- n22 -- [page:Float] < br />
26- n23 -- [page:Float] < br />
27- n31 -- [page:Float] < br />
28- n32 -- [page:Float] < br />
29- n33 -- [page:Float]
30- </ div >
31- < div >
32- Initialize the 3x3 matrix with a row-major sequence of values.< br /> < br />
33-
34- n11, n12, n13,< br />
35- n21, n22, n23,< br />
36- n31, n32, n33< br /> < br />
37-
38- If no values are sent the matrix will be initialized as an identity matrix.
21+ Creates and initializes the 3x3 matrix to the identity matrix.
3922 </ div >
4023
4124
@@ -44,7 +27,7 @@ <h2>Properties</h2>
4427
4528 < h3 > [property:Float32Array elements]</ h3 >
4629 < div >
47- Float32Array with column-major matrix values.
30+ A column-major list of matrix values.
4831 </ div >
4932
5033
@@ -60,13 +43,13 @@ <h3>[method:Matrix3 transposeIntoArray]( [page:Array array] )</h3>
6043 array -- [page:Array] < br />
6144 </ div >
6245 < div >
63- Transposes this matrix into the supplied array, and returns itself.
46+ Transposes this matrix into the supplied array, and returns itself unchanged .
6447 </ div >
6548
6649
6750 < h3 > [method:Float determinant]()</ h3 >
6851 < div >
69- Returns the matrix's determinant.
52+ Computes and returns the determinant of this matrix .
7053 </ div >
7154
7255 < h3 > [method:Matrix3 set]([page:Float n11], [page:Float n12], [page:Float n13], [page:Float n21], [page:Float n22], [page:Float n23], [page:Float n31], [page:Float n32], [page:Float n33]) [page:Matrix3 this]</ h3 >
@@ -82,58 +65,58 @@ <h3>[method:Matrix3 set]([page:Float n11], [page:Float n12], [page:Float n13], [
8265 n33 -- [page:Float]
8366 </ div >
8467 < div >
85- Set the 3x3 matrix values to the given row-major sequence of values.
68+ Sets the 3x3 matrix values to the given row-major sequence of values.
8669 </ div >
8770
88- < h3 > [method:Matrix3 multiplyScalar]([page:Float scalar ]) [page:Matrix3 this]</ h3 >
71+ < h3 > [method:Matrix3 multiplyScalar]([page:Float s ]) [page:Matrix3 this]</ h3 >
8972 < div >
9073 scalar -- [page:Float]
9174 </ div >
9275 < div >
93- Multiply every component of the matrix by a scalar value.
76+ Multiplies every component of the matrix by the scalar value *s* .
9477 </ div >
9578
9679 < h3 > [method:Array applyToVector3Array]([page:Array array])</ h3 >
9780 < div >
9881 array -- An array in the form [vector1x, vector1y, vector1z, vector2x, vector2y, vector2z, ...]
9982 </ div >
10083 < div >
101- Multiply (apply ) this matrix to every vector3 in the array.
84+ Multiplies (applies ) this matrix to every vector3 in the array.
10285 </ div >
10386
104- < h3 > [method:Matrix3 getNormalMatrix]([page:Matrix4 matrix4 ]) [page:Matrix3 this]</ h3 >
87+ < h3 > [method:Matrix3 getNormalMatrix]([page:Matrix4 m ]) [page:Matrix3 this]</ h3 >
10588 < div >
106- matrix4 -- [page:Matrix4]
89+ m -- [page:Matrix4]
10790 </ div >
10891 < div >
109- Set this matrix as the normal matrix of the passed [page:Matrix4 matrix4]. The normal matrix is the inverse transpose of the matrix.
92+ Sets this matrix as the normal matrix (upper left 3x3) of the passed [page:Matrix4 matrix4]. The normal matrix is the inverse transpose of the matrix *m* .
11093 </ div >
11194
112- < h3 > [method:Matrix3 getInverse]([page:Matrix4 matrix4 ], [page:Boolean throwOnInvertible]) [page:Matrix3 this]</ h3 >
95+ < h3 > [method:Matrix3 getInverse]([page:Matrix4 m ], [page:Boolean throwOnInvertible]) [page:Matrix3 this]</ h3 >
11396 < div >
114- matrix4 -- [page:Matrix4] < br />
97+ m -- [page:Matrix4]< br />
11598 throwOnInvertible -- [Page:Boolean] If true, throw an error if the matrix is invertible.
11699 </ div >
117100 < div >
118101 Set this matrix to the inverse of the passed matrix.
119102 </ div >
120103
121- < h3 > [method:Matrix3 copy]([page:Matrix3 matrix ]) [page:Matrix3 this]</ h3 >
104+ < h3 > [method:Matrix3 copy]([page:Matrix3 m ]) [page:Matrix3 this]</ h3 >
122105 < div >
123- matrix -- [page:Matrix3 ]
106+ m -- [page:Matrix4 ]
124107 </ div >
125108 < div >
126- Copy the values of the passed matrix.
109+ Copies the values of matrix *m* into this matrix.
127110 </ div >
128111
129112 < h3 > [method:Matrix3 clone]()</ h3 >
130113 < div >
131- Create a copy of the matrix.
114+ Creates a copy of this matrix.
132115 </ div >
133116
134117 < h3 > [method:Matrix3 identity]() [page:Matrix3 this]</ h3 >
135118 < div >
136- Set as an identity matrix .< br /> < br />
119+ Resets this matrix to identity .< br /> < br />
137120
138121 1, 0, 0< br />
139122 0, 1, 0< br />
0 commit comments