Set the semi-minor axis *b* of the annulus. Parameters ---------- b : float
(self, b)
| 1998 | self.stale = True |
| 1999 | |
| 2000 | def set_semiminor(self, b): |
| 2001 | """ |
| 2002 | Set the semi-minor axis *b* of the annulus. |
| 2003 | |
| 2004 | Parameters |
| 2005 | ---------- |
| 2006 | b : float |
| 2007 | """ |
| 2008 | self.b = float(b) |
| 2009 | self._path = None |
| 2010 | self.stale = True |
| 2011 | |
| 2012 | def set_radii(self, r): |
| 2013 | """ |
no outgoing calls