Skip to content

Commit 28437f1

Browse files
photonikertimhoffm
andauthored
Update galleries/examples/shapes_and_collections/ellipse_arrow.py
Co-authored-by: Tim Hoffmann <[email protected]>
1 parent 46898de commit 28437f1

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

galleries/examples/shapes_and_collections/ellipse_arrow.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,11 @@
1818
# Create a figure and axis
1919
fig, ax = plt.subplots(subplot_kw={"aspect": "equal"})
2020

21-
# Define an ellipse clockwise
22-
center = (2, 4)
23-
width = 30
24-
height = 20
25-
angle = 35
2621
ellipse = Ellipse(
27-
xy=center,
28-
width=width,
29-
height=height,
30-
angle=angle,
22+
xy=(2, 4),
23+
width=30,
24+
height=20,
25+
angle=35,
3126
facecolor="none",
3227
edgecolor="b"
3328
)

0 commit comments

Comments
 (0)