| 121 | } |
| 122 | |
| 123 | float Terathon::Determinant(const Matrix2D& m) |
| 124 | { |
| 125 | return (m(0,0) * m(1,1) - m(0,1) * m(1,0)); |
| 126 | } |
| 127 | |
| 128 | Matrix2D Terathon::Inverse(const Matrix2D& m) |
| 129 | { |
nothing calls this directly
no outgoing calls
no test coverage detected