static vs. active mode anti-aliasing
in
Programming Questions
•
4 months ago
When I run this sketch:
size(400, 400);
ellipse(200, 200, 100, 100);
and this sketch:
void setup() {
size(400, 400);
}
void draw() {
ellipse(200, 200, 100, 100);
}
The quality of the antialiased ellipse shape differs. Below are two screenshots, the first is "static" mode the second is the "active" mode.
Can anyone explain why the two are so different?
1