mpl_toolkits.mplot3d.art3d.Poly3DCollection¶
-
class
mpl_toolkits.mplot3d.art3d.
Poly3DCollection
(verts, *args, zsort='average', **kwargs)[source]¶ Bases:
matplotlib.collections.PolyCollection
A collection of 3D polygons.
Note
Filling of 3D polygons
There is no simple definition of the enclosed surface of a 3D polygon unless the polygon is planar.
In practice, Matplotlib fills the 2D projection of the polygon. This gives a correct filling appearance only for planar polygons. For all other polygons, you'll find orientations in which the edges of the polygon intersect in the projection. This will lead to an incorrect visualization of the 3D area.
If you need filled areas, it is recommended to create them via
plot_trisurf
, which creates a triangulation and thus generates consistent surfaces.Parameters: - vertslist of array-like Nx3
Each element describes a polygon as a sequence of
N_i
points(x, y, z)
.- zsort{'average', 'min', 'max'}, default: 'average'
The calculation method for the z-order. See
set_zsort
for details.- *args, **kwargs
All other parameters are forwarded to
PolyCollection
.
Notes
Note that this class does a bit of magic with the _facecolors and _edgecolors properties.
-
__init__
(self, verts, *args, zsort='average', **kwargs)[source]¶ Parameters: - vertslist of array-like Nx3
Each element describes a polygon as a sequence of
N_i
points(x, y, z)
.- zsort{'average', 'min', 'max'}, default: 'average'
The calculation method for the z-order. See
set_zsort
for details.- *args, **kwargs
All other parameters are forwarded to
PolyCollection
.
Notes
Note that this class does a bit of magic with the _facecolors and _edgecolors properties.
-
__module__
= 'mpl_toolkits.mplot3d.art3d'¶
-
set_alpha
(self, alpha)[source]¶ Set the alpha value used for blending - not supported on all backends.
Parameters: - alphafloat or None
-
set_edgecolor
(self, colors)[source]¶ Set the edgecolor(s) of the collection.
Parameters: - ccolor or list of colors or 'face'
The collection edgecolor(s). If a sequence, the patches cycle through it. If 'face', match the facecolor.