| 508 | ImVec2 Max; // Lower-right |
| 509 | |
| 510 | constexpr ImRect() : Min(0.0f, 0.0f), Max(0.0f, 0.0f) {} |
| 511 | constexpr ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {} |
| 512 | constexpr ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {} |
| 513 | constexpr ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {} |
no outgoing calls
no test coverage detected