createRowValues MethodStatic
Returns a Matrix3d populated by numeric values given in row-major order. Sets all entries in the matrix from call parameters appearing in row-major order, i.e.
createRowValues(axx: number, axy: number, axz: number, ayx: number, ayy: number, ayz: number, azx: number, azy: number, azz: number, result?: Matrix3d): Matrix3d
| Parameter | Type | Description | 
|---|---|---|
| axx | number | Row x, column x(0, 0) entry | 
| axy | number | Row x, column y(0, 1) entry | 
| axz | number | Row x, column z(0, 2) entry | 
| ayx | number | Row y, column x(1, 0) entry | 
| ayy | number | Row y, column y(1, 1) entry | 
| ayz | number | Row y, column z(1, 2) entry | 
| azx | number | Row z, column x(2, 0) entry | 
| azy | number | Row z, column y(2, 2) entry | 
| azz | number | row z, column z(2, 3) entry | 
| result | Matrix3d | 
Returns - Matrix3d
Defined in
- geometry3d/Matrix3d.ts Line 408
Last Updated: 20 June, 2023