points = {
return splitLine(0, 0, 1, 0, iterations, getMidPoint).reduce(reducePoints, []);
function getMidPoint(x1, y1, x2, y2) {
const t = .5 * (1 - randomness) + Math.random() * randomness;
const x = x1 * (1- t) + x2 * t;
const y = Math.max(y1, y2) + 1;
return [x, y];
}
function reducePoints(arr, v, i, points) {
if(i % 2) arr.push([points[i - 1], v]);
return arr;
}
}