circle = {
var svg = d3.select(DOM.svg(width, height))
.attr("width", width+"px")
.attr("height", height+"px")
const aroundTheCircle = zero2pi*2 + ((3/2)*Math.PI)
svg.append("line")
.attr("x1", (d,i)=>(Math.sin(aroundTheCircle + Math.PI / 2)*radius)+width/5)
.attr("y1", (d,i)=>(Math.cos(aroundTheCircle + Math.PI / 2)*radius)+height/2)
.attr("x2", 0)
.attr("y2", 0)
.attr("style","stroke:black;stroke-width:4")
svg.append("path")
.attr("d",d3.line().x(d => x1(d.x)).y(d => y1(d.y))(sine1))
.attr("stroke","blue")
.attr("stroke-width","4")
.attr("fill","none")
svg.selectAll("circle.points").data(sine1).enter().append("circle")
.attr("class","points")
.attr("cx",d=>x1(d.x))
.attr("cy",d=>y1(d.y))
.attr("r",5)
.style("opacity",d=>(d.x==zero2pi) ? 1 : .2)
svg.append("circle")
.attr("cx", width/5)
.attr("cy", height/2)
.attr("r", radius)
.attr("stroke","red")
.attr("stroke-width",4)
.style("fill-opacity",0)
svg.append("line")
.attr("x1", (Math.sin(aroundTheCircle + Math.PI / 2)*radius)+width/5)
.attr("y1", (Math.cos(aroundTheCircle + Math.PI / 2)*radius)+height/2)
.attr("x2", width/5)
.attr("y2", height/2)
.style("stroke-width", 4)
.style("stroke","red")
yield svg.node();
}