We are about to switch to a new forum software. Until then we have removed the registration on this forum.
How would I use height/2 and Width/2 to center it on the screen?
Take a look at the translate() function. You can for example say
translate(width/2, height/2);
If you would then draw an ellipse it would be drawn to the center of the screen.
Answers
Take a look at the translate() function. You can for example say
If you would then draw an ellipse it would be drawn to the center of the screen.