Overloaded operator for the equality condition
| 230 | |
| 231 | // Overloaded operator for the equality condition |
| 232 | RP3D_FORCE_INLINE bool Vector2::operator== (const Vector2& vector) const { |
| 233 | return (x == vector.x && y == vector.y); |
| 234 | } |
| 235 | |
| 236 | // Overloaded operator for the is different condition |
| 237 | RP3D_FORCE_INLINE bool Vector2::operator!= (const Vector2& vector) const { |
nothing calls this directly
no outgoing calls
no test coverage detected