Added tests for smooth and noSmooth for preproc.

In response to https://github.com/processing/processing4/issues/149,
adding tests to catch issues with smooth and noSmooth in the
preprocessor. Issue found by @benfry.
This commit is contained in:
A Pottinger
2020-11-21 10:14:54 -08:00
parent e96622d633
commit 3e7aab9556
7 changed files with 195 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
void setup(){
size(300,300, P2D);
smooth(4);
}
void draw(){
background(0);
fill(255,0,0);
ellipse(100,100,100,100);
fill(0,255,0);
ellipse(150,150,100,100);
}