xxxxxxxxxx
50
function setup() {
createCanvas(600, 400);
landscape();
}
function landscape() {
background("lightblue");
fill("green");
noStroke();
rect(0,300,width,200);
for (var x = 0; x <= width; x += 50){
var y = random(20,160);
cloud(x, y, "white");
var s = random (30, 100);
}
// clouds
cloud(100, 100, "white");
// clouds
fill("white");
circle(100,100,50);
circle(120,120,50);
circle(80,120,50);
// 2nd cloud
function cloud (x, y, c) {
fill(c);
circle(x , y , 50);
circle(x + 20, y + 20, 50);
circle(x - 20 ,y + 20, 50);
}
save ("clouds.jpg");
}