| 1108 | |
| 1109 | template <class T> |
| 1110 | static void |
| 1111 | setM33ArrayItem(FixedArray<IMATH_NAMESPACE::Matrix33<T> > &ma, |
| 1112 | Py_ssize_t index, |
| 1113 | const IMATH_NAMESPACE::Matrix33<T> &m) |
| 1114 | { |
| 1115 | ma[ma.canonical_index(index)] = m; |
| 1116 | } |
| 1117 | |
| 1118 | |
| 1119 | template <class T> |
nothing calls this directly
no test coverage detected