| 453 | |
| 454 | template <class T> |
| 455 | static Euler<T> * |
| 456 | eulerConstructor6(T x, T y, T z) |
| 457 | { |
| 458 | return new Euler<T>(Vec3<T>(x,y,z)); |
| 459 | } |
| 460 | |
| 461 | template <class T> |
| 462 | static Euler<T> * |
nothing calls this directly
no outgoing calls
no test coverage detected