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