(n: number, width: number, height: number)
| 133 | |
| 134 | /** Grid geometry for the filmstrip layout. */ |
| 135 | export function stripCells(n: number, width: number, height: number) { |
| 136 | const cols = n <= 5 ? Math.max(1, n) : Math.ceil(Math.sqrt(n)); |
| 137 | const rows = Math.ceil(n / cols); |
| 138 | return { cols, rows, cellW: width / cols, cellH: height / rows }; |
| 139 | } |
| 140 | |
| 141 | const timeColor = (f: number) => `hsl(${190 + f * 150} 90% 65%)`; |
| 142 |
no outgoing calls
no test coverage detected