xxxxxxxxxx
36
function setup() {
createCanvas(400, 400);
background('rgba(160,218,233,0.49)');
}
function draw() {
//track
print(mouseX+","+mouseY);
//house
fill(100);
noStroke();
rect(150,300,100,50);
//roof
fill('rgb(97,75,80)');
noStroke();
triangle(300,300,200,200,100,300);
//sun
fill('#FFEB3B');
stroke('#FFC107');
strokeWeight(4);
circle(width/2,height/2,50);
//cloud
fill('#BFE7E4');
stroke('rgb(194,195,219)');
strokeWeight(3);
circle(mouseX,mouseY,50);
}