You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is an sequence of four double items representing the two quaternions for the rotation of the matrix.
117
+
Is an sequence of four double items representing the quaternions for the rotation of the matrix.
118
118
</dd>
119
119
</dl>
120
120
@@ -182,7 +182,16 @@ <h3>The constructors</h3>
182
182
<dlclass='parameters'>
183
183
<dt>Float32array array</dt>
184
184
<dd>
185
-
Create an identity matrix first. An array of 6 items sets the element values <code>a</code> to <code>f</code>. An array of 16 items sets the element values <code>m11</code> to <code>m44</code>.
185
+
Create an identity matrix first. An Float32array [[!TYPED-ARRAYS]] of 6 items sets the element values <code>a</code> to <code>f</code>. An array of 16 items sets the element values <code>m11</code> to <code>m44</code>.
186
+
</dd>
187
+
</dl>
188
+
</dd>
189
+
<dt>Constructor()</dt>
190
+
<dd>
191
+
<dlclass='parameters'>
192
+
<dt>Float64array array</dt>
193
+
<dd>
194
+
Create an identity matrix first. An Float64array [[!TYPED-ARRAYS]] of 6 items sets the element values <code>a</code> to <code>f</code>. An array of 16 items sets the element values <code>m11</code> to <code>m44</code>.
186
195
</dd>
187
196
</dl>
188
197
</dd>
@@ -671,7 +680,11 @@ <h3>Helper methods</h3>
671
680
</dd>
672
681
<dt>Float32Array toFloat32Array()</dt>
673
682
<dd>
674
-
Returns the serialized elements of the current matrix in column-major order as Float32Array.
683
+
Returns the serialized elements of the current matrix in column-major order as Float32Array [[!TYPED-ARRAYS]].
684
+
</dd>
685
+
<dt>Float64Array toFloat64Array()</dt>
686
+
<dd>
687
+
Returns the serialized elements of the current matrix in column-major order as Float64Array [[!TYPED-ARRAYS]].
0 commit comments