mpl_toolkits.mplot3d.art3d.
Line3DCollection
(segments, linewidths=None, colors=None, antialiaseds=None, linestyles='solid', offsets=None, transOffset=None, norm=None, cmap=None, pickradius=5, zorder=2, facecolors='none', **kwargs)[source]¶Bases: matplotlib.collections.LineCollection
A collection of 3D lines.
Parameters: |
|
---|
Notes
If linewidths, colors, or antialiaseds is None, they default to their rcParams setting, in sequence form.
If offsets and transOffset are not None, then offsets are transformed by transOffset and applied after the segments have been transformed to display coordinates.
If offsets is not None but transOffset is None, then the offsets are added to the segments before any transformation. In this case, a single offset can be specified as:
offsets=(xo,yo)
and this value will be added cumulatively to each successive segment, so as to produce a set of successively offset curves.
The use of ScalarMappable
is optional.
If the ScalarMappable
array
_A
is not None (i.e., a call to
set_array()
has been made), at
draw time a call to scalar mappable will be made to set the colors.