| 301 | namespace |
| 302 | { |
| 303 | template <typename... T> inline Quatf QuatMult(const Quatf& q0, const Quatf& q1, T... args) |
| 304 | { |
| 305 | return QuatMult(QuatMult(q0, q1), args...); |
| 306 | } |
| 307 | |
| 308 | #ifdef USE_REFERENCE |
| 309 | Vec3f RotVelocityRef(const RotSpline3& rs, float t) |
no test coverage detected