waves = {
const svg = d3
.create("svg")
.attr("width", scale)
.attr("height", scale)
.attr('viewBox', `0 0 ${size * 2} ${size * 2}`);
var line = d3
.line()
.curve(d3.curveBasis)
.x(function(d) {
return d[0];
})
.y(function(d) {
return d[1];
});
var paths = d3
.range(600, 2000 - 900, 3)
.map(d => walk(d))
.filter(d => d.length);
console.log('done', paths.length);
paths.forEach(p => {
p = coarse(p, 6);
svg
.append("path")
.datum(p)
.attr("class", "line")
.style("stroke", '#222')
.attr('stroke-width', 0.31)
.style('fill', 'none')
.attr("id", (d, i) => i)
.attr("d", d => line(d))
.attr('transform', `translate(${size},${size})`);
});
return svg.node();
}