Matrix4x4.toString()

Return a string describing the entire matrix

Parameters

None

Return value

String

the Matrix4x4 as a string

Usage

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

let matrix = new Matrix4x4().identity();
console.log(matrix.toString());