Shapes

Order

Run the example below. You should see a circle.

Reference
ellipse

Order matters

Change the order of the statements to look like following (use ctrl+x & ctrl+v):

ellipse(40, 45, 50, 50);
ellipse(50, 50, 20, 20);

What happens and why?