{
var margin = {top: 30, right: 30, bottom: 30, left: 30};
const width = 800;
const height = 400;
var xScale = d3.scaleLinear()
.domain([-1.5, 1.5])
.range([-width/2, width/2]);
var svg = d3.select(DOM.svg(width, height))
const g = svg
.append("g")
.style("filter", "url(#gooey)")
.attr("transform", "translate(" + (width/2 + margin.left) + "," +(height/2 + margin.top) + ")");
var defs = svg.append('defs');
var filter = defs.append('filter').attr('id','gooey');
filter.append('feGaussianBlur')
.attr('in','SourceGraphic')
.attr('stdDeviation','10')
.attr('result','blur');
filter.append('feColorMatrix')
.attr('in','blur')
.attr('mode','matrix')
.attr('values','1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7')
.attr('result','gooey');
filter.append('feComposite')
.attr('in','SourceGraphic')
.attr('in2','gooey')
.attr('operator','atop');
g.append("circle")
.attr("class", "centerCircle")
.attr("cx", 0)
.attr("cy", 0)
.attr("r", 40)
.style("fill", "#81BC00");
var steps = 15;
g.selectAll(".flyCircle")
.data(d3.range(steps).map(function(num) {return (num/steps)*(2*Math.PI); }))
.enter().append("circle")
.attr("class", "flyCircle")
.attr("cx", 0)
.attr("cy", 0)
.attr("r", 15)
.style("fill", "#81BC00");
updateCircles(svg,xScale,steps)
yield svg.node();
}