MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / GetBL

Function GetBL

Externals/imgui-1.46/Include/imgui_internal.h:206–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204 ImVec2 GetTL() const { return Min; }
205 ImVec2 GetTR() const { return ImVec2(Max.x, Min.y); }
206 ImVec2 GetBL() const { return ImVec2(Min.x, Max.y); }
207 ImVec2 GetBR() const { return Max; }
208 bool Contains(const ImVec2& p) const { return p.x >= Min.x && p.y >= Min.y && p.x < Max.x && p.y < Max.y; }
209 bool Contains(const ImRect& r) const { return r.Min.x >= Min.x && r.Min.y >= Min.y && r.Max.x < Max.x && r.Max.y < Max.y; }

Callers

nothing calls this directly

Calls 1

ImVec2Class · 0.85

Tested by

no test coverage detected