Set whether to use antialiased rendering. Parameters ---------- aa : bool or None
(self, aa)
| 361 | return self._linestyle |
| 362 | |
| 363 | def set_antialiased(self, aa): |
| 364 | """ |
| 365 | Set whether to use antialiased rendering. |
| 366 | |
| 367 | Parameters |
| 368 | ---------- |
| 369 | aa : bool or None |
| 370 | """ |
| 371 | self._antialiased = mpl._val_or_rc(aa, 'patch.antialiased') |
| 372 | self.stale = True |
| 373 | |
| 374 | def _set_edgecolor(self, color): |
| 375 | if color is None: |
no outgoing calls