| 34 | constexpr explicit operator ::Vector4() const { return {x, y, width, height}; } |
| 35 | |
| 36 | [[nodiscard]] std::string ToString() const { return TextFormat("Rectangle(%fx%f, %fx%f)", x, y, width, height); } |
| 37 | |
| 38 | operator std::string() const { return ToString(); } |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected