(nodeCount: number)
| 39 | } |
| 40 | |
| 41 | export function bloomIntensityScale(nodeCount: number): number { |
| 42 | return 1 - fadeFactor(nodeCount) * (1 - BLOOM_FLOOR); |
| 43 | } |
| 44 | |
| 45 | /* Per-node glow boost: full up to the reference count, then a gentle, |
| 46 | * high-floored fade so large clouds don't merge into mush while moderate |
no test coverage detected