| 32 | constexpr double GetY() const noexcept { return mY; } |
| 33 | |
| 34 | constexpr void SetX(double x) noexcept { mX = x; } |
| 35 | constexpr void SetY(double y) noexcept { mY = y; } |
| 36 | |
| 37 | template<size_t N> |
nothing calls this directly
no outgoing calls
no test coverage detected