mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +01:00
15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
public void setup() {
|
|
size(400, 400, P3D);
|
|
fill(0);
|
|
}
|
|
|
|
public void draw() {
|
|
background(255);
|
|
for (int i = 0; i < 1000; i++) {
|
|
float x = random(width);
|
|
float y = random(height);
|
|
text("HELLO", x, y);
|
|
}
|
|
if (frameCount % 10 == 0) println(frameRate);
|
|
}
|