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

Function M44Array_inverse

src/python/PyImath/PyImathMatrix44.cpp:1248–1259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1246
1247template <class T>
1248static FixedArray<IMATH_NAMESPACE::Matrix44<T> >
1249M44Array_inverse(const FixedArray<IMATH_NAMESPACE::Matrix44<T> > &ma)
1250{
1251 MATH_EXC_ON;
1252 size_t len = ma.len();
1253 FixedArray<IMATH_NAMESPACE::Matrix44<T> > result (len);
1254
1255 M44Array_Inverse<T> task (result, ma);
1256 dispatchTask (task, len);
1257
1258 return result;
1259}
1260
1261template <class T>
1262struct M44Array_RmulVec4 : public Task

Callers

nothing calls this directly

Calls 2

dispatchTaskFunction · 0.85
lenMethod · 0.45

Tested by

no test coverage detected