mirror of
https://github.com/processing/processing4.git
synced 2026-01-25 17:31:07 +01:00
11 lines
106 B
Plaintext
11 lines
106 B
Plaintext
PGraphics gfx;
|
|
|
|
void setup() {
|
|
|
|
gfx = createGraphics(width, height);
|
|
gfx.smooth();
|
|
}
|
|
|
|
void draw() {
|
|
}
|