| 746 | } |
| 747 | |
| 748 | Quaternion Quaternion::FromAxisAngle(const Float3& axis, float angle) |
| 749 | { |
| 750 | XMVECTOR q = XMQuaternionRotationAxis(axis.ToSIMD(), angle); |
| 751 | return Quaternion(q); |
| 752 | } |
| 753 | |
| 754 | Quaternion Quaternion::FromEuler(float x, float y, float z) |
| 755 | { |
nothing calls this directly
no test coverage detected