Skip to content

Instantly share code, notes, and snippets.

@jcburns
Last active January 20, 2016 16:55
Show Gist options
  • Save jcburns/a7a7dc6110223c417a7a to your computer and use it in GitHub Desktop.
Save jcburns/a7a7dc6110223c417a7a to your computer and use it in GitHub Desktop.
Rainbow Circle 720
<!DOCTYPE html>
<meta charset="utf-8">
<svg width="960" height="960"></svg>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var π = Math.PI,
τ = 2 * π,
n = 500;
var width = 960,
height = 960,
outerRadius = width / 2 - 24,
innerRadius = outerRadius - 72;
d3.select("svg").append("g")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")")
.selectAll("path")
.data(d3.range(0, τ, τ / n))
.enter().append("path")
.attr("d", d3.svg.arc()
.outerRadius(outerRadius)
.innerRadius(innerRadius)
.startAngle(function(d) { return d; })
.endAngle(function(d) { return d + τ / n * 1.1; }))
.style("fill", function(d) { return d3.hsl((d) * 720 / τ, 1, .5); });
d3.select(self.frameElement).style("height", height + "px");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment