MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / Determinant

Method Determinant

TSMatrix2D.cpp:123–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123float Terathon::Determinant(const Matrix2D& m)
124{
125 return (m(0,0) * m(1,1) - m(0,1) * m(1,0));
126}
127
128Matrix2D Terathon::Inverse(const Matrix2D& m)
129{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected