( interface Matrix )
Array with matrix values.
Readonly
Read-only flag to check if a given object is of type Matrix.
clone():T;
copy(m:T):T;
Computes and returns the determinant of this matrix.
identity():T;
invert():T;
multiplyScalar(s:number):T;
transpose():T;
( interface Matrix )