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

Function rmul44

src/python/PyImath/PyImathMatrix44.cpp:799–806  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

797
798template <class S, class T>
799static Matrix44<T>
800rmul44(Matrix44<T> &mat2, Matrix44<S> &mat1)
801{
802 MATH_EXC_ON;
803 Matrix44<T> mat1T;
804 mat1T.setValue (mat1);
805 return mat1T * mat2;
806}
807
808template <class S, class T>
809static const Matrix44<T> &

Callers

nothing calls this directly

Calls 1

setValueMethod · 0.80

Tested by

no test coverage detected