Created
August 6, 2012 08:10
-
-
Save roundrobin/3272223 to your computer and use it in GitHub Desktop.
just another inlet to tributary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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, -113]).range([0.18581, 20]); | |
| var data = d3.range(361).map(function(i) { return 1.248 * 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(function(d,i) { return i/2; }) | |
| .outerRadius(function(d,i) { return 176; }) | |
| .angle(function(d, i) { return i/(14);//(4.71515) * Math.cos(i); | |
| })); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment