xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
}
function draw() {
background(200);
// fill|(255, 0,0);
// circle(mouseX, mouseY, 100)
// 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
}