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