| 418 | } |
| 419 | |
| 420 | inline Quaternion operator /(const Quaternion& q, float s) |
| 421 | { |
| 422 | s = 1.0F / s; |
| 423 | return (Quaternion(q.xyz * s, q.w * s)); |
| 424 | } |
| 425 | |
| 426 | /// \brief Returns a boolean value indicating whether the two quaternions $q1$ and $q2$ are equal. |
| 427 | /// \related Quaternion |
nothing calls this directly
no test coverage detected