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

Function add44T

src/python/PyImath/PyImathMatrix44.cpp:776–786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

774
775template <class T>
776static Matrix44<T>
777add44T(Matrix44<T> &mat, T a)
778{
779 MATH_EXC_ON;
780 Matrix44<T> m(mat.x);
781 for(int i = 0; i < 4; ++i)
782 for(int j = 0; j < 4; ++j)
783 m.x[i][j] += a;
784
785 return m;
786}
787
788template <class S, class T>
789static Matrix44<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected