xxxxxxxxxx
24
function setup() {
createCanvas(600, 600);
colorMode(HSB);
}
function draw() {
background(255);
drawCircle(width/2, height/2, width, 0);
}
function drawCircle(x, y, d, h) {
strokeWeight(2);
noStroke();
fill(h, 100, 100, 255, 50);
circle(x, y, d);
if (d > 16) {
drawCircle(x + d * 0.25, y, d * 0.5, (h + 10) % 360);
drawCircle(x - d * 0.25, y, d * 0.5, (h + 50) % 360);
drawCircle(x, y - d * 0.25, d * 0.5, (h + 10) % 360);
drawCircle(x, y + d * 0.25, d * 0.5, (h + 60) % 360);
}
}