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 40327be commit 3fb64a5Copy full SHA for 3fb64a5
lib/matplotlib/patches.py
@@ -1000,13 +1000,8 @@ def set_xy(self, xy):
1000
1001
_get_xy = get_xy
1002
_set_xy = set_xy
1003
- xy = property(
1004
- cbook.deprecated("3.0")(get_xy), cbook.deprecated("3.0")(set_xy),
1005
- doc="""Set/get the vertices of the polygon. This property is
1006
- provided for backward compatibility with matplotlib 0.91.x
1007
- only. New code should use
1008
- :meth:`~matplotlib.patches.Polygon.get_xy` and
1009
- :meth:`~matplotlib.patches.Polygon.set_xy` instead.""")
+ xy = property(get_xy, set_xy,
+ doc='The vertices of the path as (N, 2) numpy array.')
1010
1011
1012
class Wedge(Patch):
0 commit comments