diff --git a/galleries/examples/shapes_and_collections/ellipse_demo.py b/galleries/examples/shapes_and_collections/ellipse_demo.py index 22de6998418d..0d7e72a1100d 100644 --- a/galleries/examples/shapes_and_collections/ellipse_demo.py +++ b/galleries/examples/shapes_and_collections/ellipse_demo.py @@ -22,16 +22,15 @@ angle=np.random.rand() * 360) for i in range(NUM)] -fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) +fig, ax = plt.subplots() +ax.set(xlim=(0, 10), ylim=(0, 10), aspect="equal") + for e in ells: ax.add_artist(e) e.set_clip_box(ax.bbox) e.set_alpha(np.random.rand()) e.set_facecolor(np.random.rand(3)) -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) - plt.show() # %% @@ -45,15 +44,13 @@ angle_step = 45 # degrees angles = np.arange(0, 180, angle_step) -fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) +fig, ax = plt.subplots() +ax.set(xlim=(-2.2, 2.2), ylim=(-2.2, 2.2), aspect="equal") for angle in angles: ellipse = Ellipse((0, 0), 4, 2, angle=angle, alpha=0.1) ax.add_artist(ellipse) -ax.set_xlim(-2.2, 2.2) -ax.set_ylim(-2.2, 2.2) - plt.show() # %%