Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86fbf90 commit 135d7cbCopy full SHA for 135d7cb
2 files changed
galleries/examples/shapes_and_collections/ellipse_arrow.py
@@ -10,11 +10,11 @@
10
"""
11
12
import matplotlib.pyplot as plt
13
+
14
from matplotlib.markers import MarkerStyle
15
from matplotlib.patches import Ellipse
16
from matplotlib.transforms import Affine2D
17
-
18
# Create a figure and axis
19
fig, ax = plt.subplots(subplot_kw={"aspect": "equal"})
20
lib/matplotlib/patches.pyi
@@ -259,8 +259,8 @@ class Ellipse(Patch):
259
260
def get_corners(self) -> np.ndarray: ...
261
262
- def get_vertices(self) -> list[tuple[float, float]]: ...
263
- def get_co_vertices(self) -> list[tuple[float, float]]: ...
+ def get_vertices(self) -> tuple[float, float]: ...
+ def get_co_vertices(self) -> tuple[float, float]: ...
264
265
266
class Annulus(Patch):
0 commit comments