Description
This page is generated from the Processing project folder at /2016/QUIZZES/Q-08 Processing 3/for pat/Q_08_Mission_06/Q_08_Mission_06.pde.
Archive
No companion assets were found in this sketch folder.
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
} This page is generated from the Processing project folder at /2016/QUIZZES/Q-08 Processing 3/for pat/Q_08_Mission_06/Q_08_Mission_06.pde.
No companion assets were found in this sketch folder.