We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b4f7f6 commit 756b7b1Copy full SHA for 756b7b1
examples/Demos/QA/Circles/Circles.pde
@@ -0,0 +1,17 @@
1
+void setup() {
2
+ fullScreen(P2D);
3
+ noStroke();
4
+ background(255);
5
+}
6
+
7
+void draw() {
8
+ if (mousePressed) {
9
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
0 commit comments