| 741 | } |
| 742 | |
| 743 | Quaternion Quaternion::Invert(const Quaternion& q) |
| 744 | { |
| 745 | return Quaternion(XMQuaternionInverse(q.ToSIMD())); |
| 746 | } |
| 747 | |
| 748 | Quaternion Quaternion::FromAxisAngle(const Float3& axis, float angle) |
| 749 | { |
nothing calls this directly
no test coverage detected