| 529 | ImVec2 Max; // Lower-right |
| 530 | |
| 531 | constexpr ImRect() : Min(0.0f, 0.0f), Max(0.0f, 0.0f) {} |
| 532 | constexpr ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {} |
| 533 | constexpr ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {} |
| 534 | constexpr ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {} |
no outgoing calls
no test coverage detected