|
5 | 5 |
|
6 | 6 | Generating 3D plots using the mplot3d toolkit.
|
7 | 7 |
|
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 generates the figures. |
9 | 10 |
|
10 | 11 | .. contents::
|
11 | 12 | :backlinks: none
|
|
39 | 40 |
|
40 | 41 | Line plots
|
41 | 42 | ==========
|
| 43 | +See `.Axes3D.plot` for API documentation. |
42 | 44 |
|
43 | 45 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_lines3d_001.png
|
44 | 46 | :target: ../../gallery/mplot3d/lines3d.html
|
45 | 47 | :align: center
|
46 | 48 |
|
47 |
| -.. automethod:: Axes3D.plot |
48 |
| -
|
49 | 49 | .. _scatter3d:
|
50 | 50 |
|
51 | 51 | Scatter plots
|
52 | 52 | =============
|
| 53 | +See `.Axes3D.scatter` for API documentation. |
53 | 54 |
|
54 | 55 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_scatter3d_001.png
|
55 | 56 | :target: ../../gallery/mplot3d/scatter3d.html
|
56 | 57 | :align: center
|
57 | 58 |
|
58 |
| -.. automethod:: Axes3D.scatter |
59 |
| -
|
60 | 59 | .. _wireframe:
|
61 | 60 |
|
62 | 61 | Wireframe plots
|
63 | 62 | ===============
|
| 63 | +See `.Axes3D.plot_wireframe` for API documentation. |
64 | 64 |
|
65 | 65 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_wire3d_001.png
|
66 | 66 | :target: ../../gallery/mplot3d/wire3d.html
|
67 | 67 | :align: center
|
68 | 68 |
|
69 |
| -.. automethod:: Axes3D.plot_wireframe |
70 |
| -
|
71 | 69 | .. _surface:
|
72 | 70 |
|
73 | 71 | Surface plots
|
74 | 72 | =============
|
| 73 | +See `.Axes3D.plot_surface` for API documentation. |
75 | 74 |
|
76 | 75 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png
|
77 | 76 | :target: ../../gallery/mplot3d/surface3d.html
|
78 | 77 | :align: center
|
79 | 78 |
|
80 |
| -.. automethod:: Axes3D.plot_surface |
81 |
| -
|
82 | 79 | .. _trisurface:
|
83 | 80 |
|
84 | 81 | Tri-Surface plots
|
85 | 82 | =================
|
| 83 | +See `.Axes3D.plot_trisurf` for API documentation. |
86 | 84 |
|
87 | 85 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png
|
88 | 86 | :target: ../../gallery/mplot3d/trisurf3d.html
|
89 | 87 | :align: center
|
90 | 88 |
|
91 |
| -.. automethod:: Axes3D.plot_trisurf |
92 |
| -
|
93 | 89 | .. _contour3d:
|
94 | 90 |
|
95 | 91 | Contour plots
|
96 | 92 | =============
|
| 93 | +See `.Axes3D.contour` for API documentation. |
97 | 94 |
|
98 | 95 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_contour3d_001.png
|
99 | 96 | :target: ../../gallery/mplot3d/contour3d.html
|
100 | 97 | :align: center
|
101 | 98 |
|
102 |
| -.. automethod:: Axes3D.contour |
103 |
| -
|
104 | 99 | .. _contourf3d:
|
105 | 100 |
|
106 | 101 | Filled contour plots
|
107 | 102 | ====================
|
| 103 | +See `.Axes3D.contourf` for API documentation. |
108 | 104 |
|
109 | 105 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_001.png
|
110 | 106 | :target: ../../gallery/mplot3d/contourf3d.html
|
111 | 107 | :align: center
|
112 | 108 |
|
113 |
| -.. automethod:: Axes3D.contourf |
114 |
| -
|
115 | 109 | .. versionadded:: 1.1.0
|
116 | 110 | The feature demoed in the second contourf3d example was enabled as a
|
117 | 111 | result of a bugfix for version 1.1.0.
|
|
120 | 114 |
|
121 | 115 | Polygon plots
|
122 | 116 | =============
|
| 117 | +See `.Axes3D.add_collection3d` for API documentation. |
123 | 118 |
|
124 | 119 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_polys3d_001.png
|
125 | 120 | :target: ../../gallery/mplot3d/polys3d.html
|
126 | 121 | :align: center
|
127 | 122 |
|
128 |
| -.. automethod:: Axes3D.add_collection3d |
129 |
| -
|
130 | 123 | .. _bar3d:
|
131 | 124 |
|
132 | 125 | Bar plots
|
133 | 126 | =========
|
| 127 | +See `.Axes3D.bar` for API documentation. |
134 | 128 |
|
135 | 129 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_bars3d_001.png
|
136 | 130 | :target: ../../gallery/mplot3d/bars3d.html
|
137 | 131 | :align: center
|
138 | 132 |
|
139 |
| -.. automethod:: Axes3D.bar |
140 |
| -
|
141 | 133 | .. _quiver3d:
|
142 | 134 |
|
143 | 135 | Quiver
|
144 | 136 | ======
|
| 137 | +See `.Axes3D.quiver` for API documentation. |
145 | 138 |
|
146 | 139 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png
|
147 | 140 | :target: ../../gallery/mplot3d/quiver3d.html
|
148 | 141 | :align: center
|
149 | 142 |
|
150 |
| -.. automethod:: Axes3D.quiver |
151 |
| -
|
152 | 143 | .. _2dcollections3d:
|
153 | 144 |
|
154 | 145 | 2D plots in 3D
|
|
161 | 152 |
|
162 | 153 | Text
|
163 | 154 | ====
|
| 155 | +See `.Axes3D.text` for API documentation. |
164 | 156 |
|
165 | 157 | .. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png
|
166 | 158 | :target: ../../gallery/mplot3d/text3d.html
|
167 | 159 | :align: center
|
168 |
| -
|
169 |
| -.. automethod:: Axes3D.text |
170 | 160 | """
|
0 commit comments