Set whether object should be drawn with antialiased rendering.
(self, b)
| 850 | self.set_foreground(self._rgb, isRGBA=True) |
| 851 | |
| 852 | def set_antialiased(self, b): |
| 853 | """Set whether object should be drawn with antialiased rendering.""" |
| 854 | # Use ints to make life easier on extension code trying to read the gc. |
| 855 | self._antialiased = int(bool(b)) |
| 856 | |
| 857 | @_docstring.interpd |
| 858 | def set_capstyle(self, cs): |