| 317 | |
| 318 | template <class T> |
| 319 | static Quat<T> |
| 320 | div(Quat<T> &quat, Quat<T> &other) |
| 321 | { |
| 322 | MATH_EXC_ON; |
| 323 | return quat / other; |
| 324 | } |
| 325 | |
| 326 | template <class T> |
| 327 | static Quat<T> |
nothing calls this directly
no outgoing calls
no test coverage detected