Skip to content

Commit c0b2a4d

Browse files
committed
De-duplicated mplot3D API docs
1 parent a35921c commit c0b2a4d

File tree

5 files changed

+6
-27
lines changed

5 files changed

+6
-27
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
3D contourf polygons placed between levels
22
------------------------------------------
3-
The polygons used in a 3D `~mpl_toolkits.mplot3d.Axes3D.contourf` plot are
3+
The polygons used in a 3D `~.Axes3D.contourf` plot are
44
now placed halfway between the contour levels, as each polygon represents the
55
location of values that lie between two levels.

doc/api/prev_api_changes/api_changes_3.5.0/behaviour.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ yet parsed, but this is a prerequisite for implementing subsetting.
235235
3D contourf polygons placed between levels
236236
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
237237

238-
The polygons used in a 3D `~mpl_toolkits.mplot3d.Axes3D.contourf` plot are now
238+
The polygons used in a 3D `~.Axes3D.contourf` plot are now
239239
placed halfway between the contour levels, as each polygon represents the
240240
location of values that lie between two levels.
241241

doc/users/prev_whats_new/whats_new_1.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Simple quiver plot for mplot3d toolkit
242242
A team of students in an *Engineering Large Software Systems* course, taught
243243
by Prof. Anya Tafliovich at the University of Toronto, implemented a simple
244244
version of a quiver plot in 3D space for the mplot3d toolkit as one of their
245-
term project. This feature is documented in :func:`~mpl_toolkits.mplot3d.Axes3D.quiver`.
245+
term project. This feature is documented in :func:`~.Axes3D.quiver`.
246246
The team members are: Ryan Steve D'Souza, Victor B, xbtsw, Yang Wang, David,
247247
Caradec Bisesar and Vlad Vassilovski.
248248

doc/users/prev_whats_new/whats_new_1.5.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Added a :mod:`.legend_handler` for :class:`~matplotlib.collections.PolyCollectio
340340
Support for alternate pivots in mplot3d quiver plot
341341
```````````````````````````````````````````````````
342342

343-
Added a :code:`pivot` kwarg to :func:`~mpl_toolkits.mplot3d.Axes3D.quiver`
343+
Added a :code:`pivot` kwarg to :func:`~.Axes3D.quiver`
344344
that controls the pivot point around which the quiver line rotates. This also
345345
determines the placement of the arrow head along the quiver line.
346346

tutorials/toolkits/mplot3d.py

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
66
Generating 3D plots using the mplot3d toolkit.
77
8-
.. currentmodule:: mpl_toolkits.mplot3d
8+
This tutorial showcases various 3D plots. Click on the figures to see each full
9+
gallery example with the code that generated teh figures.
910
1011
.. contents::
1112
:backlinks: none
@@ -44,8 +45,6 @@
4445
:target: ../../gallery/mplot3d/lines3d.html
4546
:align: center
4647
47-
.. automethod:: Axes3D.plot
48-
4948
.. _scatter3d:
5049
5150
Scatter plots
@@ -55,8 +54,6 @@
5554
:target: ../../gallery/mplot3d/scatter3d.html
5655
:align: center
5756
58-
.. automethod:: Axes3D.scatter
59-
6057
.. _wireframe:
6158
6259
Wireframe plots
@@ -66,8 +63,6 @@
6663
:target: ../../gallery/mplot3d/wire3d.html
6764
:align: center
6865
69-
.. automethod:: Axes3D.plot_wireframe
70-
7166
.. _surface:
7267
7368
Surface plots
@@ -77,8 +72,6 @@
7772
:target: ../../gallery/mplot3d/surface3d.html
7873
:align: center
7974
80-
.. automethod:: Axes3D.plot_surface
81-
8275
.. _trisurface:
8376
8477
Tri-Surface plots
@@ -88,8 +81,6 @@
8881
:target: ../../gallery/mplot3d/trisurf3d.html
8982
:align: center
9083
91-
.. automethod:: Axes3D.plot_trisurf
92-
9384
.. _contour3d:
9485
9586
Contour plots
@@ -99,8 +90,6 @@
9990
:target: ../../gallery/mplot3d/contour3d.html
10091
:align: center
10192
102-
.. automethod:: Axes3D.contour
103-
10493
.. _contourf3d:
10594
10695
Filled contour plots
@@ -110,8 +99,6 @@
11099
:target: ../../gallery/mplot3d/contourf3d.html
111100
:align: center
112101
113-
.. automethod:: Axes3D.contourf
114-
115102
.. versionadded:: 1.1.0
116103
The feature demoed in the second contourf3d example was enabled as a
117104
result of a bugfix for version 1.1.0.
@@ -125,8 +112,6 @@
125112
:target: ../../gallery/mplot3d/polys3d.html
126113
:align: center
127114
128-
.. automethod:: Axes3D.add_collection3d
129-
130115
.. _bar3d:
131116
132117
Bar plots
@@ -136,8 +121,6 @@
136121
:target: ../../gallery/mplot3d/bars3d.html
137122
:align: center
138123
139-
.. automethod:: Axes3D.bar
140-
141124
.. _quiver3d:
142125
143126
Quiver
@@ -147,8 +130,6 @@
147130
:target: ../../gallery/mplot3d/quiver3d.html
148131
:align: center
149132
150-
.. automethod:: Axes3D.quiver
151-
152133
.. _2dcollections3d:
153134
154135
2D plots in 3D
@@ -165,6 +146,4 @@
165146
.. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png
166147
:target: ../../gallery/mplot3d/text3d.html
167148
:align: center
168-
169-
.. automethod:: Axes3D.text
170149
"""

0 commit comments

Comments
 (0)