(self)
| 643 | self._axlim_clip = axlim_clip |
| 644 | |
| 645 | def get_path(self): |
| 646 | # docstring inherited |
| 647 | # self._path2d is not initialized until do_3d_projection |
| 648 | if not hasattr(self, '_path2d'): |
| 649 | self.axes.M = self.axes.get_proj() |
| 650 | self.do_3d_projection() |
| 651 | return self._path2d |
| 652 | |
| 653 | def do_3d_projection(self): |
| 654 | s = self._segment3d |