svg = {
let height = width/2
const svg = DOM.svg(width,height)
let cx = width/2
let cy = height/2
let radius = height/2
d3.select(svg).append("circle")
.attr("fill", "none")
.attr("stroke", "black")
.attr("stroke-width", 1)
.attr("r", radius)
.attr("cx", cx)
.attr("cy", cy)
return svg
}