function hexDistort() {
const max = Math.max(...nodes.map(n => n.x), Math.abs(Math.min(...nodes.map(n => n.x))))
nodes.forEach(n => { n.activeColor = null })
nodes.filter((n, i) => i >= 0).forEach(n => {
n.activeColor = 'orange'
console.log(n.y, n.x)
const angleRadians = Math.atan2(n.y, n.x) + Math.PI / 2 + Math.PI * 2;
n.activeColor = highlightColor(angleRadians % (Math.PI / 3))
n.x *= 0.8 + 0.2 * distortFactor(angleRadians % (Math.PI / 3))
n.y *= 0.8 + 0.2 * distortFactor(angleRadians % (Math.PI / 3))
console.log(angleRadians, n.activeColor)
})
}