MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / operator *

Function operator *

src/python/PyImath/PyImathFixedMatrix.h:314–314  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

312
313// PyObject* PyNumber_Multiply( PyObject *o1, PyObject *o2)
314template <class T> static FixedMatrix<T> operator * (const FixedMatrix<T> &a0, const FixedMatrix<T> &a1) { return apply_matrix_matrix_binary_op<op_mul,T,T,T>(a0,a1); }
315template <class T> static FixedMatrix<T> operator * (const FixedMatrix<T> &a0, const T &v1) { return apply_matrix_scalar_binary_op<op_mul,T,T,T>(a0,v1); }
316template <class T> static FixedMatrix<T> operator * (const T &v1, const FixedMatrix<T> &a0) { return a0*v1; }
317

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected