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

Method __init__

lib/mpl_toolkits/mplot3d/art3d.py:674–692  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

set_3d_propertiesMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected