xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
//background color, be sure to call this first.
background(14,144,181);
//car body
rect(50,250,100,50);
//car front
triangle(150,250,200,300,150,300);
//left tire
ellipse(75,300, 35, 35);
//right tire
ellipse(135,300, 35, 35);
}