| 323 | * Grid cell dimension information for rendering backgrounds or overlays. |
| 324 | */ |
| 325 | export interface GridCellDimensions { |
| 326 | /** Width of a single cell in pixels */ |
| 327 | readonly cellWidth: number; |
| 328 | /** Height of a single cell in pixels */ |
| 329 | readonly cellHeight: number; |
| 330 | /** Horizontal offset from container edge to first cell */ |
| 331 | readonly offsetX: number; |
| 332 | /** Vertical offset from container edge to first cell */ |
| 333 | readonly offsetY: number; |
| 334 | /** Horizontal gap between cells */ |
| 335 | readonly gapX: number; |
| 336 | /** Vertical gap between cells */ |
| 337 | readonly gapY: number; |
| 338 | /** Number of columns */ |
| 339 | readonly cols: number; |
| 340 | /** Total container width */ |
| 341 | readonly containerWidth: number; |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * Configuration for grid cell dimension calculation. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…