xxxxxxxxxx
105
// function setup() {
// createCanvas(400, 400);
// }
// function draw() {
// background('pink');
// rectMode(CENTER);
// fill(255, 0, 0, 100)
// rect(200, 200, 50, 100);
// fill('blue')
// point(50, 50);
// line(40, 20, 200, 50)
// square(300, 300, 50);
// circle(200, 200, 60);
// ellipse(60, 60, 30, 90);
// fill('red')
// quad(200, 200, 150, 100, 80, 70, 20, 70)
// noFill()
// triangle(30, 40, 30, 60, 70, 50);
// arc(200,200,50,50,0, PI)
// function setup() {
// createCanvas(400, 400);
// }
// function draw() {
// background(220);
// fill(150, 100, 50);
// rect(150, 200, 200, 150);
// fill(100, 150, 50);
// triangle(150, 200, 250, 100, 350, 200);
// fill(100, 70, 30);
// rect(223, 275, 50, 75);
// fill(200);
// strokeWeight(2)
// rect(175, 215, 40, 40);
// rect(275, 215, 40, 40);
// }
// Set up the canvas with a size of 400x400 pixels
function setup() {
createCanvas(400, 400);
}
// Continuously draw elements on the canvas
function draw() {
// Set the background color to a light blue
background('rgb(207,255,255)');
// Draw clouds using ellipses
fill(255); // White color
noStroke(); // No outline for the clouds
ellipse(50, 60, 60, 60);
ellipse(90, 50, 60, 70);
ellipse(130, 60, 60, 60);
//cloud 2
ellipse(250, 60, 60, 60);
ellipse(290, 50, 60, 70);
ellipse(330, 60, 60, 60);
// Draw the main body of the house
fill('#FCF3A5'); // Brownish color
rect(150, 200, 200, 150);
// Draw the roof of the house
fill('pink'); // Greenish color
triangle(150, 200, 250, 100, 350, 200);
// Draw the door of the house
fill(100, 70, 30); // Dark brown color
rect(223, 275, 50, 75);
// Draw windows of the house
fill(200); // Light gray color
strokeWeight(2); // Set outline thickness
rect(175, 215, 40, 40);
rect(275, 215, 40, 40);
// Draw the first tree
fill(139, 69, 19); // Saddle brown color for the trunk
rect(50, 250, 50, 150); // Draw the trunk
fill(34, 139, 34); // Forest green color for leaves
ellipse(75, 200, 120, 120); // Draw the leaves of the tree
// Draw a car
fill(255, 69, 0); // Red color for the car
rect(150, 275, 100, 30); // Car body
rect(120, 305, 160, 30); // Car roof
fill(0); // Black color for the wheels
noStroke()
ellipse(160, 330, 30, 30); // Front wheel
ellipse(240, 330, 30, 30); // Back wheel
}
// print(mouseX +","+ mouseY)