| 676 | |
| 677 | template <class T> |
| 678 | static void |
| 679 | setM22ArrayItem(FixedArray<IMATH_NAMESPACE::Matrix22<T> > &ma, |
| 680 | Py_ssize_t index, |
| 681 | const IMATH_NAMESPACE::Matrix22<T> &m) |
| 682 | { |
| 683 | ma[ma.canonical_index(index)] = m; |
| 684 | } |
| 685 | |
| 686 | template <class T> |
| 687 | static FixedArray<IMATH_NAMESPACE::Matrix22<T> > |
nothing calls this directly
no test coverage detected