Set whether to use antialiased rendering. Parameters ---------- b : bool
(self, b)
| 1061 | return self._xy |
| 1062 | |
| 1063 | def set_antialiased(self, b): |
| 1064 | """ |
| 1065 | Set whether to use antialiased rendering. |
| 1066 | |
| 1067 | Parameters |
| 1068 | ---------- |
| 1069 | b : bool |
| 1070 | """ |
| 1071 | if self._antialiased != b: |
| 1072 | self.stale = True |
| 1073 | self._antialiased = b |
| 1074 | |
| 1075 | def set_color(self, color): |
| 1076 | """ |