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

Function mul44

src/python/PyImath/PyImathMatrix44.cpp:789–796  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

787
788template <class S, class T>
789static Matrix44<T>
790mul44(Matrix44<T> &mat1, Matrix44<S> &mat2)
791{
792 MATH_EXC_ON;
793 Matrix44<T> mat2T;
794 mat2T.setValue (mat2);
795 return mat1 * mat2T;
796}
797
798template <class S, class T>
799static Matrix44<T>

Callers

nothing calls this directly

Calls 1

setValueMethod · 0.80

Tested by

no test coverage detected