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.
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);
} This page is generated from the Processing project folder at /2016/QUIZZES/Q-07 Processing 2/Q02_mission_01/Q02_mission_01.pde.
No companion assets were found in this sketch folder.