Index / 2016 / Q 08 Mission 04
400×400 · p5.js instance mode
Q_08_Mission_04.pde 24 lines
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);
}
read-only archive source from /2016/QUIZZES/Q-08 Processing 3/Q_08_Mission_04/Q_08_Mission_04.pde

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.