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

Method __init__

lib/mpl_toolkits/mplot3d/art3d.py:276–292  ·  view source on GitHub ↗

Parameters ---------- xs : array-like The x-data to be plotted. ys : array-like The y-data to be plotted. zs : array-like The z-data to be plotted. *args, **kwargs Additional arguments are passed to `~m

(self, xs, ys, zs, *args, axlim_clip=False, **kwargs)

Source from the content-addressed store, hash-verified

274 """
275
276 def __init__(self, xs, ys, zs, *args, axlim_clip=False, **kwargs):
277 """
278
279 Parameters
280 ----------
281 xs : array-like
282 The x-data to be plotted.
283 ys : array-like
284 The y-data to be plotted.
285 zs : array-like
286 The z-data to be plotted.
287 *args, **kwargs
288 Additional arguments are passed to `~matplotlib.lines.Line2D`.
289 """
290 super().__init__([], [], *args, **kwargs)
291 self.set_data_3d(xs, ys, zs)
292 self._axlim_clip = axlim_clip
293
294 def set_3d_properties(self, zs=0, zdir='z', axlim_clip=False):
295 """

Callers

nothing calls this directly

Calls 2

set_data_3dMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected