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

Method operator *

TSMatrix2D.cpp:112–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111
112Matrix2D Terathon::operator *(const Matrix2D& m, float s)
113{
114 return (Matrix2D(m(0,0) * s, m(0,1) * s, m(1,0) * s, m(1,1) * s));
115}
116
117Matrix2D Terathon::operator /(const Matrix2D& m, float s)
118{

Callers

nothing calls this directly

Calls 1

Matrix2DClass · 0.85

Tested by

no test coverage detected