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

Method operator /

TSMatrix3D.cpp:277–281  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275}
276
277Matrix3D Terathon::operator /(const Matrix3D& m, float s)
278{
279 s = 1.0F / s;
280 return (Matrix3D(m(0,0) * s, m(0,1) * s, m(0,2) * s, m(1,0) * s, m(1,1) * s, m(1,2) * s, m(2,0) * s, m(2,1) * s, m(2,2) * s));
281}
282
283float Terathon::Determinant(const Matrix3D& m)
284{

Callers

nothing calls this directly

Calls 1

Matrix3DClass · 0.85

Tested by

no test coverage detected