Finish fix of preproc handeling of smooth.

Fixes #149 as reported by @benfry.
This commit is contained in:
A Pottinger
2020-11-21 11:59:25 -08:00
parent c41e4d24ad
commit 721046b593
6 changed files with 84 additions and 38 deletions
+3 -2
View File
@@ -16,7 +16,7 @@ public class bug315g extends PApplet {
public void setup() {
/* size commented out by preprocessor */;
smooth();
/* smooth commented out by preprocessor */;
int y;
y = 60;
int d;
@@ -25,7 +25,8 @@ ellipse(75, y, d, d);
noLoop();
}
public void settings() { size(480,120); }
public void settings() { size(480,120);
smooth();}
static public void main(String[] passedArgs) {
String[] appletArgs = new String[] { "bug315g" };