Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b7dfdc5

Browse files
authored
Merge pull request #26574 from meeseeksmachine/auto-backport-of-pr-26571-on-v3.7.x
Backport PR #26571 on branch v3.7.x ([Doc]: match 3D plot types with others)
2 parents e603750 + e985ffa commit b7dfdc5

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

plot_types/3D/scatter3d_simple.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==============
3-
3D scatterplot
4-
==============
2+
===================
3+
scatter(xs, ys, zs)
4+
===================
55
66
See `~mpl_toolkits.mplot3d.axes3d.Axes3D.scatter`.
77
"""

plot_types/3D/surface3d_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
=====================
3-
3D surface
3+
plot_surface(X, Y, Z)
44
=====================
55
66
See `~mpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface`.

plot_types/3D/trisurf3d_simple.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
======================
3-
Triangular 3D surfaces
4-
======================
2+
=====================
3+
plot_trisurf(x, y, z)
4+
=====================
55
66
See `~mpl_toolkits.mplot3d.axes3d.Axes3D.plot_trisurf`.
77
"""

plot_types/3D/voxels_simple.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==========================
3-
3D voxel / volumetric plot
4-
==========================
2+
=========================
3+
voxels([x, y, z], filled)
4+
=========================
55
66
See `~mpl_toolkits.mplot3d.axes3d.Axes3D.voxels`.
77
"""

plot_types/3D/wire3d_simple.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=================
3-
3D wireframe plot
4-
=================
2+
=======================
3+
plot_wireframe(X, Y, Z)
4+
=======================
55
66
See `~mpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe`.
77
"""

0 commit comments

Comments
 (0)