(self)
| 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 | |
| 1555 | def poly_collection_2d_to_3d(col, zs=0, zdir='z', axlim_clip=False): |
nothing calls this directly
no test coverage detected