Skip to content

Instantly share code, notes, and snippets.

@roundrobin
Created August 6, 2012 02:34
Show Gist options
  • Save roundrobin/3269272 to your computer and use it in GitHub Desktop.
Save roundrobin/3269272 to your computer and use it in GitHub Desktop.
just another inlet to tributary
function randomXToY(minVal,maxVal,floatVal)
{
var randVal = minVal+(Math.random()*(maxVal-minVal));
return typeof floatVal=='undefined'?Math.round(randVal):randVal.toFixed(floatVal);
}
var scale = d3.scale.linear().domain([0, -96]).range([0.6636, 20]);
var data = d3.range(430).map(function(i) { return 1.2 * scale(i/(71) ) / 1; });
var svg = g
.data([data])
.append("g")
.attr("transform", "translate(" + 500 + "," + 274 + ")");
svg.append("path")
.attr("class", "area")
.attr("d", d3.svg.area.radial()
.innerRadius(50)
.outerRadius(function(d) { return 227; })
.angle(function(d, i) { return (-0.4) * Math.cos(i)*(-8); }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment