Using Scale() with Draw()
in
Programming Questions
•
1 years ago
Why does the following not work to grow an ellipse?
Thanks,
Shane
- void setup() {
size(200, 200);
smooth();
}
void draw() {
background(255);
scale(1.2, 1.2);
ellipse(20, 20, 20, 20);
}
Thanks,
Shane
1