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

Function M33Array_inverse

src/python/PyImath/PyImathMatrix33.cpp:1137–1148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1135
1136template <class T>
1137static FixedArray<IMATH_NAMESPACE::Matrix33<T> >
1138M33Array_inverse(const FixedArray<IMATH_NAMESPACE::Matrix33<T> > &ma)
1139{
1140 MATH_EXC_ON;
1141 size_t len = ma.len();
1142 FixedArray<IMATH_NAMESPACE::Matrix33<T> > result (len);
1143
1144 M33Array_Inverse<T> task (result, ma);
1145 dispatchTask (task, len);
1146
1147 return result;
1148}
1149
1150template <class T>
1151struct M33Array_RmulVec3 : public Task

Callers

nothing calls this directly

Calls 2

dispatchTaskFunction · 0.85
lenMethod · 0.45

Tested by

no test coverage detected