Parameters ---------- path : zs : float The location along the *zdir* axis in 3D space to position the path patch. zdir : {'x', 'y', 'z', 3-tuple} Plane to plot path patch orthogonal to. Default: 'z'. See `.get_
(self, path, *, zs=(), zdir='z', axlim_clip=False, **kwargs)
| 672 | """ |
| 673 | |
| 674 | def __init__(self, path, *, zs=(), zdir='z', axlim_clip=False, **kwargs): |
| 675 | """ |
| 676 | Parameters |
| 677 | ---------- |
| 678 | path : |
| 679 | zs : float |
| 680 | The location along the *zdir* axis in 3D space to position the |
| 681 | path patch. |
| 682 | zdir : {'x', 'y', 'z', 3-tuple} |
| 683 | Plane to plot path patch orthogonal to. Default: 'z'. |
| 684 | See `.get_dir_vector` for a description of the values. |
| 685 | axlim_clip : bool, default: False |
| 686 | Whether to hide path patches with a point outside the axes view limits. |
| 687 | |
| 688 | .. versionadded:: 3.10 |
| 689 | """ |
| 690 | # Not super().__init__! |
| 691 | Patch.__init__(self, **kwargs) |
| 692 | self.set_3d_properties(path, zs, zdir, axlim_clip) |
| 693 | |
| 694 | def set_3d_properties(self, path, zs=0, zdir='z', axlim_clip=False): |
| 695 | """ |
nothing calls this directly
no test coverage detected