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

Function mul22

src/python/PyImath/PyImathMatrix22.cpp:417–424  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

415
416template <class S, class T>
417static Matrix22<T>
418mul22(Matrix22<T> &mat1, Matrix22<S> &mat2)
419{
420 MATH_EXC_ON;
421 Matrix22<T> mat2T;
422 mat2T.setValue (mat2);
423 return mat1 * mat2T;
424}
425
426template <class S, class T>
427static Matrix22<T>

Callers

nothing calls this directly

Calls 1

setValueMethod · 0.80

Tested by

no test coverage detected