Parameters ---------- verts : zs : float The location along the *zdir* axis in 3D space to position the patch. zdir : {'x', 'y', 'z'} Plane to plot patch orthogonal to. Default: 'z'. See `.get_dir_vector` for a
(self, *args, zs=(), zdir='z', axlim_clip=False, **kwargs)
| 601 | """ |
| 602 | |
| 603 | def __init__(self, *args, zs=(), zdir='z', axlim_clip=False, **kwargs): |
| 604 | """ |
| 605 | Parameters |
| 606 | ---------- |
| 607 | verts : |
| 608 | zs : float |
| 609 | The location along the *zdir* axis in 3D space to position the |
| 610 | patch. |
| 611 | zdir : {'x', 'y', 'z'} |
| 612 | Plane to plot patch orthogonal to. Default: 'z'. |
| 613 | See `.get_dir_vector` for a description of the values. |
| 614 | axlim_clip : bool, default: False |
| 615 | Whether to hide patches with a vertex outside the axes view limits. |
| 616 | |
| 617 | .. versionadded:: 3.10 |
| 618 | """ |
| 619 | super().__init__(*args, **kwargs) |
| 620 | self.set_3d_properties(zs, zdir, axlim_clip) |
| 621 | |
| 622 | def set_3d_properties(self, verts, zs=0, zdir='z', axlim_clip=False): |
| 623 | """ |
nothing calls this directly
no test coverage detected