simpleGenerator = (lastPoint, jumpRatio, vertices) => {
const randVertexIdx = d3.randomInt(0, vertices.length)()
const randVertex = vertices[randVertexIdx]
return [
(lastPoint[0] - randVertex[0]) * jumpRatio + randVertex[0],
(lastPoint[1] - randVertex[1]) * jumpRatio + randVertex[1],
]
}