Matrix3x3.toArray()
Return this matrix as an array
Parameters
None
Return value
Float32Array
the Matrix3x3 as an array
Usage
import {Matrix3x3} from '@lcluber/type6js';
let matrix = new Matrix3x3().identity();
console.log(matrix.toArray());
Return this matrix as an array
None
Float32Array
the Matrix3x3 as an array
import {Matrix3x3} from '@lcluber/type6js';
let matrix = new Matrix3x3().identity();
console.log(matrix.toArray());