MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / isVisibleRect

Function isVisibleRect

packages/core/src/renderer/renderToDrawlist/indices.ts:10–12  ·  view source on GitHub ↗
(r: Rect)

Source from the content-addressed store, hash-verified

8const ZERO_RECT: Rect = Object.freeze({ x: 0, y: 0, w: 0, h: 0 });
9
10export function isVisibleRect(r: Rect): boolean {
11 return r.w > 0 && r.h > 0;
12}
13
14export function indexLayoutRects(
15 layoutRoot: LayoutTree,

Callers 13

renderBoxBorderFunction · 0.85
renderCollectionWidgetFunction · 0.85
renderTextWidgetsFunction · 0.85
renderFileWidgetsFunction · 0.85
renderFormWidgetsFunction · 0.85
renderOverlayWidgetFunction · 0.85
renderEditorWidgetFunction · 0.85
renderCanvasWidgetsFunction · 0.85
renderIndicatorWidgetsFunction · 0.85
renderContainerWidgetFunction · 0.85
renderBasicWidgetFunction · 0.85
renderChartWidgetsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected