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