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

Method set_antialiased

lib/matplotlib/text.py:379–394  ·  view source on GitHub ↗

Set whether to use antialiased rendering. Parameters ---------- antialiased : bool Notes ----- Antialiasing will be determined by :rc:`text.antialiased` and the parameter *antialiased* will have no effect if the text contains

(self, antialiased)

Source from the content-addressed store, hash-verified

377 return self._rotation_mode
378
379 def set_antialiased(self, antialiased):
380 """
381 Set whether to use antialiased rendering.
382
383 Parameters
384 ----------
385 antialiased : bool
386
387 Notes
388 -----
389 Antialiasing will be determined by :rc:`text.antialiased`
390 and the parameter *antialiased* will have no effect if the text contains
391 math expressions.
392 """
393 self._antialiased = antialiased
394 self.stale = True
395
396 def get_antialiased(self):
397 """Return whether antialiased rendering is used."""

Callers 5

test_get_set_antialiasedFunction · 0.95
drawMethod · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by 1

test_get_set_antialiasedFunction · 0.76