Set the height of the ellipse. Parameters ---------- height : float
(self, height)
| 1806 | width = property(get_width, set_width) |
| 1807 | |
| 1808 | def set_height(self, height): |
| 1809 | """ |
| 1810 | Set the height of the ellipse. |
| 1811 | |
| 1812 | Parameters |
| 1813 | ---------- |
| 1814 | height : float |
| 1815 | """ |
| 1816 | self._height = height |
| 1817 | self.stale = True |
| 1818 | |
| 1819 | def get_height(self): |
| 1820 | """Return the height of the ellipse.""" |
no outgoing calls
no test coverage detected