Files
processing4/java/test/resources/pgraphics.pde
2021-10-10 11:30:24 -07:00

11 lines
106 B
Plaintext

PGraphics gfx;
void setup() {
gfx = createGraphics(width, height);
gfx.smooth();
}
void draw() {
}