Plot a circle inside a rectangle in Matplotlib


To place a circle inside a rectangle, we can take the following steps −

  • Create a new figure or activate an existing figure using figure() method.

  • Add a subplot to the current axis.

  • Create a rectangle and a circle instance.

  • Add a rectangle patch to the current axis.

  • Add a circle patch to the current axis.

  • Scale x and y axes using xlim() and ylim() methods.

  • To display the figure, use show() method.

Example

import matplotlib
from matplotlib import pyplot as plt, patches
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111)
rect = patches.Rectangle((2, 2), 8, 5, color='yellow')
circle = patches.Circle((6, 4.5), radius=2, color='red')
ax.add_patch(rect)
ax.add_patch(circle)
plt.xlim([-10, 10])
plt.ylim([-10, 10])
plt.axis('equal')
plt.show()

Output

Updated on: 12-May-2021

959 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements