Matrix3x3.toString()
Return a string describing the entire matrix
Parameters
None
Return value
String
the Matrix3x3 as a string
Usage
import {Matrix3x3} from '@lcluber/type6js';
let matrix = new Matrix3x3().identity();
console.log(matrix.toString());