Set the semi-major axis *a* of the annulus. Parameters ---------- a : float
(self, a)
| 1986 | angle = property(get_angle, set_angle) |
| 1987 | |
| 1988 | def set_semimajor(self, a): |
| 1989 | """ |
| 1990 | Set the semi-major axis *a* of the annulus. |
| 1991 | |
| 1992 | Parameters |
| 1993 | ---------- |
| 1994 | a : float |
| 1995 | """ |
| 1996 | self.a = float(a) |
| 1997 | self._path = None |
| 1998 | self.stale = True |
| 1999 | |
| 2000 | def set_semiminor(self, b): |
| 2001 | """ |
no outgoing calls