MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_antialiased

Method set_antialiased

lib/matplotlib/lines.py:1063–1073  ·  view source on GitHub ↗

Set whether to use antialiased rendering. Parameters ---------- b : bool

(self, b)

Source from the content-addressed store, hash-verified

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 """

Callers 2

__init__Method · 0.95
drawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected