| 291 | // needed to convert Eulerf::InputLayout to Euler<T>::InputLayout |
| 292 | template <class T> |
| 293 | static typename Euler<T>::InputLayout interpretInputLayout(typename IMATH_NAMESPACE::Eulerf::InputLayout layout) |
| 294 | { |
| 295 | if (layout == IMATH_NAMESPACE::Eulerf::XYZLayout) |
| 296 | return Euler<T>::XYZLayout; |
| 297 | return Euler<T>::IJKLayout; |
| 298 | } |
| 299 | |
| 300 | // needed to convert Eulerf::Axis to Euler<T>::Axis |
| 301 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected