| 120 | } |
| 121 | |
| 122 | inline void RotationF::interpolate(const RotationF& _from, const RotationF& _to, F32 _factor) |
| 123 | { |
| 124 | QuatF tmpQuat; |
| 125 | |
| 126 | tmpQuat.interpolate(_from.asQuatF(), _to.asQuatF(), _factor); |
| 127 | |
| 128 | set(tmpQuat); |
| 129 | } |
| 130 | |
| 131 | void RotationF::lookAt(const Point3F& _origin, const Point3F& _target, const Point3F& _up) |
| 132 | { |
no test coverage detected