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

Method get_edgecolor

lib/mpl_toolkits/mplot3d/art3d.py:1169–1175  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1167 return self._maybe_depth_shade_and_sort_colors(super().get_facecolor())
1168
1169 def get_edgecolor(self):
1170 # We need this check here to make sure we do not double-apply the depth
1171 # based alpha shading when the edge color is "face" which means the
1172 # edge colour should be identical to the face colour.
1173 if cbook._str_equal(self._edgecolors, 'face'):
1174 return self.get_facecolor()
1175 return self._maybe_depth_shade_and_sort_colors(super().get_edgecolor())
1176
1177
1178def patch_collection_2d_to_3d(

Callers 5

_3d_extend_contourMethod · 0.45
get_edgecolorMethod · 0.45
set_3d_propertiesMethod · 0.45
set_edgecolorMethod · 0.45

Calls 2

get_facecolorMethod · 0.95

Tested by 1