something like modelX() for a 2d sketch
in
Programming Questions
•
2 years ago
in other words how do i get the x and y coordinates after the popMatrix();
- void setup(){
- size(600, 600);
- translate(width/2, height/2);
- pushMatrix();
- rotate(HALF_PI);
- ellipse(100, 0, 10, 10);
- popMatrix();
- }
1