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

Function mul33

src/python/PyImath/PyImathMatrix33.cpp:688–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

686
687template <class S, class T>
688static Matrix33<T>
689mul33(Matrix33<T> &mat1, Matrix33<S> &mat2)
690{
691 MATH_EXC_ON;
692 Matrix33<T> mat2T;
693 mat2T.setValue (mat2);
694 return mat1 * mat2T;
695}
696
697template <class S, class T>
698static Matrix33<T>

Callers

nothing calls this directly

Calls 1

setValueMethod · 0.80

Tested by

no test coverage detected