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

Method __init__

lib/mpl_toolkits/mplot3d/art3d.py:488–514  ·  view source on GitHub ↗
(self, lines, axlim_clip=False, **kwargs)

Source from the content-addressed store, hash-verified

486 A collection of 3D lines.
487 """
488 def __init__(self, lines, axlim_clip=False, **kwargs):
489 super().__init__(lines, **kwargs)
490 self._axlim_clip = axlim_clip
491 """
492 Parameters
493 ----------
494 lines : list of (N, 3) array-like
495 A sequence ``[line0, line1, ...]`` where each line is a (N, 3)-shape
496 array-like containing points:: line0 = [(x0, y0, z0), (x1, y1, z1), ...]
497 Each line can contain a different number of points.
498 linewidths : float or list of float, default: :rc:`lines.linewidth`
499 The width of each line in points.
500 colors : :mpltype:`color` or list of color, default: :rc:`lines.color`
501 A sequence of RGBA tuples (e.g., arbitrary color strings, etc, not
502 allowed).
503 antialiaseds : bool or list of bool, default: :rc:`lines.antialiased`
504 Whether to use antialiasing for each line.
505 facecolors : :mpltype:`color` or list of :mpltype:`color`, default: 'none'
506 When setting *facecolors*, each line is interpreted as a boundary
507 for an area, implicitly closing the path from the last point to the
508 first point. The enclosed area is filled with *facecolor*.
509 In order to manually specify what should count as the "interior" of
510 each line, please use `.PathCollection` instead, where the
511 "interior" can be specified by appropriate usage of
512 `~.path.Path.CLOSEPOLY`.
513 **kwargs : Forwarded to `.Collection`.
514 """
515
516 def set_sort_zpos(self, val):
517 """Set the position to use for z-sorting."""

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected