Shapes

Shapes, such as Rectangles, Circles, etc., are defined in matplotlib.patches.

from matplotlib.patches import Circle, Rectangle
# other options include Ellipse, Polygon, Shadow

sun = Circle((0,0), radius=0.05, color='y')
ax.add_patch(sun)