Description
This page is generated from the Processing project folder at /2016/QUIZZES/Q-08 Processing 3/Q_08_Mission_04/Q_08_Mission_04.pde.
Archive
No companion assets were found in this sketch folder.
void setup() {
size(400,400);
background(255);
Car();
}
void Car() {
noStroke();
fill(#);
//car
beginShape();
vertex(110,150);
vertex(100,200);
vertex(300,200);
vertex(280,150);
vertex(250,150);
vertex(230,100);
vertex(180,100);
endShape(CLOSE);
//wheels
fill(0);
ellipse(150,200,50,50);
ellipse(250,200,50,50);
} This page is generated from the Processing project folder at /2016/QUIZZES/Q-08 Processing 3/Q_08_Mission_04/Q_08_Mission_04.pde.
No companion assets were found in this sketch folder.