xxxxxxxxxx
41
function setup() {
createCanvas(700, 400);
landscape();
}
function landscape() {
background('lightblue');
noStroke()
fill("green")
rect(0, 300, width, 100)
fill("gray")
triangle(100, 7, -200, 300, 500, 300);
for (var x = 10; x <= width; x += 50){
var y = random(20, 160);
cloud(x, y, "white");
var s = random(90, 130)
tree(x, 260, s)
}
tree();
function cloud(x, y, c){
fill(c)
circle(x, y, 50)
circle(x + 20, y + 20, 50)
circle(x - 20, y + 20, 50)
}
function tree(x, y, s){
fill("brown")
rect(x, y, 20, 400, 5)
fill("green")
circle(x + 10, y, s)
}
}
function mousePressed(){
save("Landscape.png")
}