Overloaded operator for the multiplication with a constant
| 342 | |
| 343 | // Overloaded operator for the multiplication with a constant |
| 344 | RP3D_FORCE_INLINE Quaternion Quaternion::operator*(decimal nb) const { |
| 345 | return Quaternion(nb * x, nb * y, nb * z, nb * w); |
| 346 | } |
| 347 | |
| 348 | // Overloaded operator for the multiplication of two quaternions |
| 349 | RP3D_FORCE_INLINE Quaternion Quaternion::operator*(const Quaternion& quaternion) const { |
nothing calls this directly
no test coverage detected