mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 18:31:07 +01:00
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.
13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
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);
|
|
}
|