Placement of Ellipses on Screen

I want to know how to put a circle in a certain spot on the screen. I know how to make ellipses just need help with how to know the coordinates of where it will go

This will put the ellipse at the bottom left of the screen:

ellipse(0,0,100)

This will put the ellipse in the middle of the screen:

ellipse(WIDTH/2,HEIGHT/2,100)

This will put the ellipse in the top right corner:

ellipse(WIDTH,HEIGHT,100)

@GriffinC Look at the top of the forum for the word “Reference”. That will take you to the built in reference. Then select “Graphics”. Under “Graphics” is “Drawing”. Under there is “ellipse” that will give you all the info you need. There is also a lot of other information that might come in handy.