Overloaded operator for the is different condition
| 263 | |
| 264 | // Overloaded operator for the is different condition |
| 265 | RP3D_FORCE_INLINE bool Vector3::operator!= (const Vector3& vector) const { |
| 266 | return !(*this == vector); |
| 267 | } |
| 268 | |
| 269 | // Overloaded operator for addition with assignment |
| 270 | RP3D_FORCE_INLINE Vector3& Vector3::operator+=(const Vector3& vector) { |
nothing calls this directly
no outgoing calls
no test coverage detected