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

Function M44Array_rmulVec4

src/python/PyImath/PyImathMatrix44.cpp:1283–1293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1281
1282template <class T>
1283static FixedArray< Vec4<T> >
1284M44Array_rmulVec4 (const FixedArray< IMATH_NAMESPACE::Matrix44<T> > &a, const Vec4<T> &v)
1285{
1286 MATH_EXC_ON;
1287 size_t len = a.len();
1288 FixedArray< Vec4<T> > r (Py_ssize_t(len), UNINITIALIZED);
1289
1290 M44Array_RmulVec4<T> task (a, v, r);
1291 dispatchTask (task, len);
1292 return r;
1293}
1294
1295template <class T>
1296struct M44Array_RmulVec4Array : public Task

Callers

nothing calls this directly

Calls 2

dispatchTaskFunction · 0.85
lenMethod · 0.45

Tested by

no test coverage detected