Compare if this vector is numerically equal to another
| 742 | |
| 743 | // Compare if this vector is numerically equal to another |
| 744 | inline constexpr bool operator == (const v_2d& rhs) const |
| 745 | { |
| 746 | return (this->x == rhs.x && this->y == rhs.y); |
| 747 | } |
| 748 | |
| 749 | // Compare if this vector is not numerically equal to another |
| 750 | inline constexpr bool operator != (const v_2d& rhs) const |
nothing calls this directly
no outgoing calls
no test coverage detected