MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/mpl_toolkits/mplot3d/art3d.py:603–620  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 2

set_3d_propertiesMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected