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

Method set_antialiased

lib/matplotlib/collections.py:813–824  ·  view source on GitHub ↗

Set the antialiasing state for rendering. Parameters ---------- aa : bool or list of bools

(self, aa)

Source from the content-addressed store, hash-verified

811 return self._antialiaseds
812
813 def set_antialiased(self, aa):
814 """
815 Set the antialiasing state for rendering.
816
817 Parameters
818 ----------
819 aa : bool or list of bools
820 """
821 if aa is None:
822 aa = self._get_default_antialiased()
823 self._antialiaseds = np.atleast_1d(np.asarray(aa, bool))
824 self.stale = True
825
826 def _get_default_antialiased(self):
827 # This may be overridden in a subclass.

Callers 2

__init__Method · 0.95
drawMethod · 0.45

Calls 1

Tested by

no test coverage detected