(self)
| 1536 | self.stale = True |
| 1537 | |
| 1538 | def get_facecolor(self): |
| 1539 | # docstring inherited |
| 1540 | # self._facecolors2d is not initialized until do_3d_projection |
| 1541 | if not hasattr(self, '_facecolors2d'): |
| 1542 | self.axes.M = self.axes.get_proj() |
| 1543 | self.do_3d_projection() |
| 1544 | return np.asarray(self._facecolors2d) |
| 1545 | |
| 1546 | def get_edgecolor(self): |
| 1547 | # docstring inherited |
nothing calls this directly
no test coverage detected