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

Method update_from

lib/matplotlib/text.py:400–414  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

398 return self._antialiased
399
400 def update_from(self, other):
401 # docstring inherited
402 super().update_from(other)
403 self._color = other._color
404 self._multialignment = other._multialignment
405 self._verticalalignment = other._verticalalignment
406 self._horizontalalignment = other._horizontalalignment
407 self._fontproperties = other._fontproperties.copy()
408 self._usetex = other._usetex
409 self._rotation = other._rotation
410 self._transform_rotates_text = other._transform_rotates_text
411 self._picker = other._picker
412 self._linespacing = other._linespacing
413 self._antialiased = other._antialiased
414 self.stale = True
415
416 def _get_layout(self, renderer):
417 """

Callers 10

drawMethod · 0.45
_copy_tick_propsMethod · 0.45
new_axesMethod · 0.45
update_from_first_childFunction · 0.45
_default_update_propMethod · 0.45
test_agg_filterFunction · 0.45
drop_shadow_lineFunction · 0.45
svg_filter_line.pyFile · 0.45
poly_changedMethod · 0.45

Calls 1

copyMethod · 0.45

Tested by 2

test_agg_filterFunction · 0.36