| 4 | |
| 5 | constexpr double GetX() const noexcept { return mX; } |
| 6 | constexpr double GetY() const noexcept { return mY; } |
| 7 | |
| 8 | constexpr void SetX(double x) noexcept { mX = x; } |
| 9 | constexpr void SetY(double y) noexcept { mY = y; } |
nothing calls this directly
no outgoing calls
no test coverage detected