-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
Description
Processing 3.3.6
Mac OSX 10.12.6
noSmooth does not work with P2D or P3D.
PGraphics pg;
void setup() {
size(640, 640, P2D);
noSmooth();
pg = createGraphics(32, 32);
pg.noSmooth();
}
void draw() {
pg.beginDraw();
pg.background(128);
pg.rect(4, 4, 16, 16);
pg.endDraw();
image(pg, 0, 0, width, height);
}Reactions are currently unavailable
