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

Method get_edgecolor

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

Source from the content-addressed store, hash-verified

907 return self._maybe_depth_shade_and_sort_colors(super().get_facecolor())
908
909 def get_edgecolor(self):
910 # We need this check here to make sure we do not double-apply the depth
911 # based alpha shading when the edge color is "face" which means the
912 # edge colour should be identical to the face colour.
913 if cbook._str_equal(self._edgecolors, 'face'):
914 return self.get_facecolor()
915 return self._maybe_depth_shade_and_sort_colors(super().get_edgecolor())
916
917
918def _get_data_scale(X, Y, Z):

Callers

nothing calls this directly

Calls 3

get_facecolorMethod · 0.95
get_edgecolorMethod · 0.45

Tested by

no test coverage detected