MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / add33T

Function add33T

src/python/PyImath/PyImathMatrix33.cpp:675–685  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

673
674template <class T>
675static Matrix33<T>
676add33T(Matrix33<T> &mat, T a)
677{
678 MATH_EXC_ON;
679 Matrix33<T> m(mat.x);
680 for(int i = 0; i < 3; ++i)
681 for(int j = 0; j < 3; ++j)
682 m.x[i][j] += a;
683
684 return m;
685}
686
687template <class S, class T>
688static Matrix33<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected