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

Method operator *

TSMatrix3D.cpp:272–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270
271
272Matrix3D Terathon::operator *(const Matrix3D& m, float s)
273{
274 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));
275}
276
277Matrix3D Terathon::operator /(const Matrix3D& m, float s)
278{

Callers

nothing calls this directly

Calls 3

Matrix3DClass · 0.85
Transform2DClass · 0.85
Point2DClass · 0.85

Tested by

no test coverage detected