Bases: LineCollection
A collection of 3D lines.
A sequence (line0, line1, line2) of lines, where each line is a list of points:
lineN = [(x0, y0), (x1, y1), ... (xm, ym)]
or the equivalent Mx2 numpy array with two columns. Each line can have a different number of segments.
rcParams["lines.linewidth"] (default: 1.5)
The width of each line in points.
rcParams["lines.color"] (default: 'C0')
A sequence of RGBA tuples (e.g., arbitrary color strings, etc, not allowed).
rcParams["lines.antialiased"] (default: True)
Whether to use antialiasing for each line.
zorder of the lines once drawn.
When setting facecolors, each line is interpreted as a boundary for an area, implicitly closing the path from the last point to the first point. The enclosed area is filled with facecolor. In order to manually specify what should count as the "interior" of each line, please use PathCollection instead, where the "interior" can be specified by appropriate usage of CLOSEPOLY.
Forwarded to Collection.
Project the points according to renderer matrix.
Set multiple properties at once.
Supported properties are
Property | Description |
|---|---|
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array and two offsets from the bottom left corner of the image | |
array-like or scalar or None | |
bool | |
| bool or list of bools |
array-like or None | |
| |
(vmin: float, vmax: float) | |
| |
bool | |
Patch or (Path, Transform) or None | |
| |
| |
| |
str | |
{'/', '\', '|', '-', '+', 'x', 'o', 'O', '.', '*'} | |
bool | |
| |
object | |
| str or tuple or list thereof |
| float or list of floats |
bool | |
| |
| |
(N, 2) or (2,) array-like | |
list of | |
unknown | |
None or bool or float or callable | |
float | |
bool | |
unknown | |
(scale: float, length: float, randomness: float) | |
bool or None | |
unknown | |
str | |
list of str or None | |
unknown | |
bool | |
float |
Set 3D segments.
Set the position to use for z-sorting.
mpl_toolkits.mplot3d.art3d.Line3DCollection
© 2012–2023 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.html