xxxxxxxxxx
32
function setup() {
createCanvas(600, 500);
}
function draw() {
background(51);
stroke(255);
noFill();
translate(width / 2, height);
branch(0, -50, 100);
// stroke(255, 0, 0);
// noFill();
// translate(0, height - 300);
// branch(0, -25, 50);
}
function branch(x, y, r) {
ellipse(x, y, r, r);
translate(0, -r);
if (r > 15) {
push();
x = x - r/1.1;
branch(x, y, r * 0.75);
pop();
push();
x = x + r*1.8;
branch(x, y, r * 0.75);
pop();
}
}