{
const size = 250
const svg = d3.create('svg')
.attr('height', size)
.attr('width', size)
var r = svg.append('path')
.attr('id', 'test_path')
.attr('fill', 'none')
.attr('stroke-width', 20)
.attr('stroke', 'black')
.attr('d', test_path)
return g.toPoints(r);
}