determinant method
Returns the determinant of this matrix.
Implementation
double determinant() =>
(_m2storage[0] * _m2storage[3]) - (_m2storage[1] * _m2storage[2]);
Returns the determinant of this matrix.
double determinant() =>
(_m2storage[0] * _m2storage[3]) - (_m2storage[1] * _m2storage[2]);