File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1659,6 +1659,8 @@ def get_vertices(self):
1659
1659
Return the left and right vertex coordinates of the ellipse.
1660
1660
1661
1661
The definition can be found `here <https://en.wikipedia.org/wiki/Ellipse>`_
1662
+
1663
+ .. versionadded:: 3.8
1662
1664
"""
1663
1665
x0 = self ._center [0 ] - self ._width / 2 * np .cos (np .deg2rad (self ._angle ))
1664
1666
y0 = self ._center [1 ] - self ._width / 2 * np .sin (np .deg2rad (self ._angle ))
@@ -1671,6 +1673,8 @@ def get_co_vertices(self):
1671
1673
Return the left and right co-vertex coordinates of the ellipse.
1672
1674
1673
1675
The definition can be found `here <https://en.wikipedia.org/wiki/Ellipse>`_
1676
+
1677
+ .. versionadded:: 3.8
1674
1678
"""
1675
1679
x0 = self ._center [0 ] - self ._height / 2 * np .sin (np .deg2rad (self ._angle ))
1676
1680
y0 = self ._center [1 ] + self ._height / 2 * np .cos (np .deg2rad (self ._angle ))
You can’t perform that action at this time.
0 commit comments