Set the lengths of the first axes (e.g., major axis).
(self, widths)
| 2171 | self.set_transform(_affine(m)) |
| 2172 | |
| 2173 | def set_widths(self, widths): |
| 2174 | """Set the lengths of the first axes (e.g., major axis).""" |
| 2175 | self._widths = 0.5 * np.asarray(widths).ravel() |
| 2176 | self.stale = True |
| 2177 | |
| 2178 | def set_heights(self, heights): |
| 2179 | """Set the lengths of second axes (e.g., minor axes).""" |