Set whether to use antialiased rendering. Parameters ---------- antialiased : bool Notes ----- Antialiasing will be determined by :rc:`text.antialiased` and the parameter *antialiased* will have no effect if the text contains
(self, antialiased)
| 377 | return self._rotation_mode |
| 378 | |
| 379 | def set_antialiased(self, antialiased): |
| 380 | """ |
| 381 | Set whether to use antialiased rendering. |
| 382 | |
| 383 | Parameters |
| 384 | ---------- |
| 385 | antialiased : bool |
| 386 | |
| 387 | Notes |
| 388 | ----- |
| 389 | Antialiasing will be determined by :rc:`text.antialiased` |
| 390 | and the parameter *antialiased* will have no effect if the text contains |
| 391 | math expressions. |
| 392 | """ |
| 393 | self._antialiased = antialiased |
| 394 | self.stale = True |
| 395 | |
| 396 | def get_antialiased(self): |
| 397 | """Return whether antialiased rendering is used.""" |
no outgoing calls