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

Method get_edgecolor

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

Source from the content-addressed store, hash-verified

1544 return np.asarray(self._facecolors2d)
1545
1546 def get_edgecolor(self):
1547 # docstring inherited
1548 # self._edgecolors2d is not initialized until do_3d_projection
1549 if not hasattr(self, '_edgecolors2d'):
1550 self.axes.M = self.axes.get_proj()
1551 self.do_3d_projection()
1552 return np.asarray(self._edgecolors2d)
1553
1554
1555def poly_collection_2d_to_3d(col, zs=0, zdir='z', axlim_clip=False):

Callers

nothing calls this directly

Calls 2

do_3d_projectionMethod · 0.95
get_projMethod · 0.80

Tested by

no test coverage detected