| 398 | |
| 399 | template <class T> |
| 400 | static Euler<T> * |
| 401 | eulerConstructor3b(const Matrix33<T> &mat, int iorder) |
| 402 | { |
| 403 | typename Euler<T>::Order o = typename Euler<T>::Order (iorder); |
| 404 | return new Euler<T>(mat, o); |
| 405 | } |
| 406 | |
| 407 | template <class T> |
| 408 | static Euler<T> * |
nothing calls this directly
no outgoing calls
no test coverage detected