Index / 2016 / Q02 Mission 01
400×400 · p5.js instance mode
Q02_mission_01.pde 11 lines
void setup() {
  size(400, 400);
  noStroke();
  fill(255, 0, 0);
  rect(50, 50, 200, 200);
  fill(0, 255, 0);
  ellipse(width/2, height/2, 100, 100);
  stroke(#000000); // Negates the noStroke() command previously, this allows the line() to have a black stroke
  strokeWeight(4);
  line(0, 0, 400, 400);
}
read-only archive source from /2016/QUIZZES/Q-07 Processing 2/Q02_mission_01/Q02_mission_01.pde

Description

This page is generated from the Processing project folder at /2016/QUIZZES/Q-07 Processing 2/Q02_mission_01/Q02_mission_01.pde.

Archive

No companion assets were found in this sketch folder.