| 301 | |
| 302 | template <class T> |
| 303 | static Matrix33<T> |
| 304 | mulM33(Quat<T> &quat, Matrix33<T> &m) |
| 305 | { |
| 306 | MATH_EXC_ON; |
| 307 | return quat * m; |
| 308 | } |
| 309 | |
| 310 | template <class T> |
| 311 | static Quat<T> |
nothing calls this directly
no outgoing calls
no test coverage detected