Index / 2016 / Q 08 Mission 06
400×400 · p5.js instance mode
Q_08_Mission_06.pde 18 lines
void setup() {
  size(400,400);
  background(255);
  frameRate(10);
}

void draw() {
  fill(#FFFFFF,20);
  rect(0,0,400,400);
  rain();
}

void rain() {
  noStroke();
  fill(random(255),random(255),random(255));
  ellipse(random(30,370),random(30,370),random(10,30),random(10,30));
  // adjusted the x and y so that the largest circle(30) will never leave the screen
}
read-only archive source from /2016/QUIZZES/Q-08 Processing 3/Q_08_Mission_06/Q_08_Mission_06.pde

Description

This page is generated from the Processing project folder at /2016/QUIZZES/Q-08 Processing 3/Q_08_Mission_06/Q_08_Mission_06.pde.

Archive

No companion assets were found in this sketch folder.