Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created May 27, 2013 05:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikhazzard/5655266 to your computer and use it in GitHub Desktop.
Save erikhazzard/5655266 to your computer and use it in GitHub Desktop.
circcccccc recursive
{"description":"circcccccc recursive","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01}
var svg = d3.select('svg');
function draw(cx,cy,r){
if(r > 6 ){
svg.append('circle')
.attr({
cx: cx, cy: cy, r: r
}).style({
fill: 'none',
stroke: '#336699'
});
draw(cx, cy + r/ 2, r/2);
draw(cx, cy - r/2, r/2);
draw(cx - r/2, cy, r/2)
draw(cx + r/2, cy, r/2);
}
}
draw( 400, 400, 400);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment