(name)
| 593 | } |
| 594 | |
| 595 | function find(name) { |
| 596 | const elem = document.getElementById(name); |
| 597 | if (!elem) { |
| 598 | throw 'element not found: ' + name |
| 599 | } |
| 600 | return elem; |
| 601 | } |
| 602 | |
| 603 | function makeColor(index) { |
| 604 | // Rotate hue around a circle. Multiple by phi to spread things |
no outgoing calls
no test coverage detected
searching dependent graphs…