Skip to content

Commit 756b7b1

Browse files
committed
removed Hue, added Circles
1 parent 3b4f7f6 commit 756b7b1

File tree

2 files changed

+17
-31
lines changed

2 files changed

+17
-31
lines changed

examples/Demos/QA/Circles/Circles.pde

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
void setup() {
2+
fullScreen(P2D);
3+
noStroke();
4+
background(255);
5+
}
6+
7+
void draw() {
8+
if (mousePressed) {
9+
background(255);
10+
}
11+
float x = random(width);
12+
float y = random(height);
13+
color c = color(random(255), random(255), random(255));
14+
float r = random(10, 30);
15+
fill(c);
16+
ellipse(x, y, r, r);
17+
}

examples/Demos/QA/Hue/Hue.pde

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)