| 1220 | |
| 1221 | template <class T> |
| 1222 | static void |
| 1223 | setM44ArrayItem(FixedArray<IMATH_NAMESPACE::Matrix44<T> > &ma, |
| 1224 | Py_ssize_t index, |
| 1225 | const IMATH_NAMESPACE::Matrix44<T> &m) |
| 1226 | { |
| 1227 | ma[ma.canonical_index(index)] = m; |
| 1228 | } |
| 1229 | |
| 1230 | template <class T> |
| 1231 | struct M44Array_Inverse : public Task |
nothing calls this directly
no test coverage detected