Matrix4x3.toArray()

Return this matrix as an array

Parameters

None

Return value

Float32Array

the Matrix4x3 as an array

Usage

import {Matrix4x3} from '@lcluber/type6js';

let matrix = new Matrix4x3().identity();
console.log(matrix.toArray());