(self)
| 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 | |
| 918 | def _get_data_scale(X, Y, Z): |
nothing calls this directly
no test coverage detected