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

Method set_antialiased

lib/matplotlib/patches.py:363–372  ·  view source on GitHub ↗

Set whether to use antialiased rendering. Parameters ---------- aa : bool or None

(self, aa)

Source from the content-addressed store, hash-verified

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:

Callers 3

__init__Method · 0.95
test_default_antialiasedFunction · 0.95

Calls

no outgoing calls

Tested by 1

test_default_antialiasedFunction · 0.76