(nodeCount: number)
| 46 | * high-floored fade so large clouds don't merge into mush while moderate |
| 47 | * graphs keep their halos. */ |
| 48 | export function nodeBoostScale(nodeCount: number): number { |
| 49 | return 1 - fadeFactor(nodeCount) * (1 - NODE_BOOST_FLOOR); |
| 50 | } |
| 51 | |
| 52 | /* Colour-aware glow multiplier applied to each node before bloom. |
| 53 | * |
no test coverage detected