| 300 | // needed to convert Eulerf::Axis to Euler<T>::Axis |
| 301 | template <class T> |
| 302 | static typename Euler<T>::Axis interpretAxis(typename IMATH_NAMESPACE::Eulerf::Axis axis) |
| 303 | { |
| 304 | if (axis == IMATH_NAMESPACE::Eulerf::X) |
| 305 | return Euler<T>::X; |
| 306 | else if (axis == IMATH_NAMESPACE::Eulerf::Y) |
| 307 | return Euler<T>::Y; |
| 308 | else |
| 309 | return Euler<T>::Z; |
| 310 | } |
| 311 | |
| 312 | template <class T> |
| 313 | static Euler<T> * |
nothing calls this directly
no outgoing calls
no test coverage detected