points = {
restart
const RADIUS = SIZE / 2
const points = [
STARTING_ANGLE,
STARTING_ANGLE + TAU / 3,
STARTING_ANGLE + 2 * TAU / 3
].map((angle) => ([
RADIUS * Math.cos(angle) + SIZE / 2,
RADIUS * Math.sin(angle) + SIZE / 2 + RADIUS / 5,
]))
let lastPoint, randVertex
while (points.length < MAX_POINTS) {
lastPoint = points[points.length - 1]
randVertex = points[d3.randomInt(0, 3)()]
const newPoint = [
(lastPoint[0] + randVertex[0]) / 2,
(lastPoint[1] + randVertex[1]) / 2,
]
points.push(newPoint)
}
return points
}