-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathtutorial.html
More file actions
740 lines (713 loc) · 42.1 KB
/
tutorial.html
File metadata and controls
740 lines (713 loc) · 42.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>mplot3d tutorial — Matplotlib 1.3.1 documentation</title>
<link rel="stylesheet" href="../../_static/mpl.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../',
VERSION: '1.3.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../../_static/jquery.js"></script>
<script type="text/javascript" src="../../_static/underscore.js"></script>
<script type="text/javascript" src="../../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 1.3.1 documentation"
href="../../_static/opensearch.xml"/>
<link rel="top" title="Matplotlib 1.3.1 documentation" href="../../index.html" />
<link rel="up" title="mplot3d" href="index.html" />
<link rel="next" title="mplot3d API" href="api.html" />
<link rel="prev" title="mplot3d" href="index.html" />
<link rel="canonical" href="https://matplotlib.org/2.0.2/mpl_toolkits/mplot3d/tutorial.html" />
<script data-domain="matplotlib.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
</head>
<body>
<div id="unreleased-message"> You are reading an old version of the documentation (v1.3.1). For the latest version see <a href="/stable/">https://matplotlib.org/stable/</a> </div>
<!-- Piwik -->
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/matplotlib/" : "http://apps.sourceforge.net/piwik/matplotlib/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
document.write(unescape('%3Cobject%3E%3Cnoscript%3E%3Cp%3E%3Cimg src="http://apps.sourceforge.net/piwik/matplotlib/piwik.php?idsite=1" alt="piwik"/%3E%3C/p%3E%3C/noscript%3E%3C/object%3E'));
}
</script>
<!-- End Piwik Tag -->
<link rel="shortcut icon" href="_static/favicon.ico">
<!-- The "Fork me on github" ribbon -->
<img style="float: right; margin-bottom: -40px; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" usemap="#ribbonmap"/>
<map name="ribbonmap">
<area shape="poly" coords="15,0,148,-1,148,135" href="https://github.com/matplotlib/matplotlib" title="Fork me on GitHub" />
</map>
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="../../index.html"><img src="../../_static/logo2.png" border="0" alt="matplotlib"/></a>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="api.html" title="mplot3d API"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="index.html" title="mplot3d"
accesskey="P">previous</a> |</li>
<li><a href="../../index.html">home</a>| </li>
<li><a href="../../examples/index.html">examples</a>| </li>
<li><a href="../../gallery.html">gallery</a>| </li>
<li><a href="../../api/pyplot_summary.html">pyplot</a>| </li>
<li><a href="../../contents.html">docs</a> »</li>
<li><a href="../index.html" >Toolkits</a> »</li>
<li><a href="index.html" accesskey="U">mplot3d</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="../../contents.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">mplot3d tutorial</a><ul>
<li><a class="reference internal" href="#getting-started">Getting started</a></li>
<li><a class="reference internal" href="#line-plots">Line plots</a></li>
<li><a class="reference internal" href="#scatter-plots">Scatter plots</a></li>
<li><a class="reference internal" href="#wireframe-plots">Wireframe plots</a></li>
<li><a class="reference internal" href="#surface-plots">Surface plots</a></li>
<li><a class="reference internal" href="#tri-surface-plots">Tri-Surface plots</a></li>
<li><a class="reference internal" href="#contour-plots">Contour plots</a></li>
<li><a class="reference internal" href="#filled-contour-plots">Filled contour plots</a></li>
<li><a class="reference internal" href="#polygon-plots">Polygon plots</a></li>
<li><a class="reference internal" href="#bar-plots">Bar plots</a></li>
<li><a class="reference internal" href="#d-plots-in-3d">2D plots in 3D</a></li>
<li><a class="reference internal" href="#text">Text</a></li>
<li><a class="reference internal" href="#subplotting">Subplotting</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="index.html"
title="previous chapter">mplot3d</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="api.html"
title="next chapter">mplot3d API</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../_sources/mpl_toolkits/mplot3d/tutorial.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="mplot3d-tutorial">
<span id="toolkit-mplot3d-tutorial"></span><h1>mplot3d tutorial<a class="headerlink" href="#mplot3d-tutorial" title="Permalink to this headline">¶</a></h1>
<div class="contents topic" id="contents">
<p class="topic-title first">Contents</p>
<ul class="simple">
<li><a class="reference internal" href="#mplot3d-tutorial" id="id1">mplot3d tutorial</a><ul>
<li><a class="reference internal" href="#getting-started" id="id2">Getting started</a></li>
<li><a class="reference internal" href="#line-plots" id="id3">Line plots</a></li>
<li><a class="reference internal" href="#scatter-plots" id="id4">Scatter plots</a></li>
<li><a class="reference internal" href="#wireframe-plots" id="id5">Wireframe plots</a></li>
<li><a class="reference internal" href="#surface-plots" id="id6">Surface plots</a></li>
<li><a class="reference internal" href="#tri-surface-plots" id="id7">Tri-Surface plots</a></li>
<li><a class="reference internal" href="#contour-plots" id="id8">Contour plots</a></li>
<li><a class="reference internal" href="#filled-contour-plots" id="id9">Filled contour plots</a></li>
<li><a class="reference internal" href="#polygon-plots" id="id10">Polygon plots</a></li>
<li><a class="reference internal" href="#bar-plots" id="id11">Bar plots</a></li>
<li><a class="reference internal" href="#d-plots-in-3d" id="id12">2D plots in 3D</a></li>
<li><a class="reference internal" href="#text" id="id13">Text</a></li>
<li><a class="reference internal" href="#subplotting" id="id14">Subplotting</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="getting-started">
<span id="mplot3d-getting-started"></span><h2>Getting started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h2>
<p>An Axes3D object is created just like any other axes using
the projection=‘3d’ keyword.
Create a new <a class="reference internal" href="../../api/figure_api.html#matplotlib.figure.Figure" title="matplotlib.figure.Figure"><tt class="xref py py-class docutils literal"><span class="pre">matplotlib.figure.Figure</span></tt></a> and
add a new axes to it of type <tt class="xref py py-class docutils literal"><span class="pre">Axes3D</span></tt>:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="kn">as</span> <span class="nn">plt</span>
<span class="kn">from</span> <span class="nn">mpl_toolkits.mplot3d</span> <span class="kn">import</span> <span class="n">Axes3D</span>
<span class="n">fig</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
<span class="n">ax</span> <span class="o">=</span> <span class="n">fig</span><span class="o">.</span><span class="n">add_subplot</span><span class="p">(</span><span class="mi">111</span><span class="p">,</span> <span class="n">projection</span><span class="o">=</span><span class="s">'3d'</span><span class="p">)</span>
</pre></div>
</div>
<div class="versionadded">
<p><span>New in version 1.0.0: </span>This approach is the preferred method of creating a 3D axes.</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Prior to version 1.0.0, the method of creating a 3D axes was
different. For those using older versions of matplotlib, change
<tt class="docutils literal"><span class="pre">ax</span> <span class="pre">=</span> <span class="pre">fig.add_subplot(111,</span> <span class="pre">projection='3d')</span></tt>
to <tt class="docutils literal"><span class="pre">ax</span> <span class="pre">=</span> <span class="pre">Axes3D(fig)</span></tt>.</p>
</div>
</div>
<div class="section" id="line-plots">
<span id="plot3d"></span><h2>Line plots<a class="headerlink" href="#line-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.plot">
<tt class="descclassname">Axes3D.</tt><tt class="descname">plot</tt><big>(</big><em>xs</em>, <em>ys</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.plot" title="Permalink to this definition">¶</a></dt>
<dd><p>Plot 2D or 3D data.</p>
<table border="1" class="docutils">
<colgroup>
<col width="17%" />
<col width="83%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>xs</em>, <em>ys</em></td>
<td>X, y coordinates of vertices</td>
</tr>
<tr class="row-odd"><td><em>zs</em></td>
<td>z value(s), either one for all points or one for
each point.</td>
</tr>
<tr class="row-even"><td><em>zdir</em></td>
<td>Which direction to use as z (‘x’, ‘y’ or ‘z’)
when plotting a 2D set.</td>
</tr>
</tbody>
</table>
<p>Other arguments are passed on to
<a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.plot" title="matplotlib.axes.Axes.plot"><tt class="xref py py-func docutils literal"><span class="pre">plot()</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/lines3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/lines3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/lines3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/lines3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/lines3d_demo1.png" src="../../_images/lines3d_demo1.png" />
</div>
</div>
<div class="section" id="scatter-plots">
<span id="scatter3d"></span><h2>Scatter plots<a class="headerlink" href="#scatter-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.scatter">
<tt class="descclassname">Axes3D.</tt><tt class="descname">scatter</tt><big>(</big><em>xs</em>, <em>ys</em>, <em>zs=0</em>, <em>zdir='z'</em>, <em>s=20</em>, <em>c='b'</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.scatter" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a scatter plot.</p>
<table border="1" class="docutils">
<colgroup>
<col width="15%" />
<col width="85%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>xs</em>, <em>ys</em></td>
<td>Positions of data points.</td>
</tr>
<tr class="row-odd"><td><em>zs</em></td>
<td>Either an array of the same length as <em>xs</em> and
<em>ys</em> or a single value to place all points in
the same plane. Default is 0.</td>
</tr>
<tr class="row-even"><td><em>zdir</em></td>
<td>Which direction to use as z (‘x’, ‘y’ or ‘z’)
when plotting a 2D set.</td>
</tr>
<tr class="row-odd"><td><em>s</em></td>
<td>size in points^2. It is a scalar or an array of the same
length as <em>x</em> and <em>y</em>.</td>
</tr>
<tr class="row-even"><td><em>c</em></td>
<td>a color. <em>c</em> can be a single color format string, or a
sequence of color specifications of length <em>N</em>, or a
sequence of <em>N</em> numbers to be mapped to colors using the
<em>cmap</em> and <em>norm</em> specified via kwargs (see below). Note
that <em>c</em> should not be a single numeric RGB or RGBA
sequence because that is indistinguishable from an array
of values to be colormapped. <em>c</em> can be a 2-D array in
which the rows are RGB or RGBA, however.</td>
</tr>
</tbody>
</table>
<p>Keyword arguments are passed on to
<a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.scatter" title="matplotlib.axes.Axes.scatter"><tt class="xref py py-func docutils literal"><span class="pre">scatter()</span></tt></a>.</p>
<p>Returns a <a class="reference internal" href="api.html#mpl_toolkits.mplot3d.art3d.Patch3DCollection" title="mpl_toolkits.mplot3d.art3d.Patch3DCollection"><tt class="xref py py-class docutils literal"><span class="pre">Patch3DCollection</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/scatter3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/scatter3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/scatter3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/scatter3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/scatter3d_demo1.png" src="../../_images/scatter3d_demo1.png" />
</div>
</div>
<div class="section" id="wireframe-plots">
<span id="wireframe"></span><h2>Wireframe plots<a class="headerlink" href="#wireframe-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.plot_wireframe">
<tt class="descclassname">Axes3D.</tt><tt class="descname">plot_wireframe</tt><big>(</big><em>X</em>, <em>Y</em>, <em>Z</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.plot_wireframe" title="Permalink to this definition">¶</a></dt>
<dd><p>Plot a 3D wireframe.</p>
<table border="1" class="docutils">
<colgroup>
<col width="17%" />
<col width="83%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>X</em>, <em>Y</em>,</td>
<td>Data values as 2D arrays</td>
</tr>
<tr class="row-odd"><td><em>Z</em></td>
<td> </td>
</tr>
<tr class="row-even"><td><em>rstride</em></td>
<td>Array row stride (step size)</td>
</tr>
<tr class="row-odd"><td><em>cstride</em></td>
<td>Array column stride (step size)</td>
</tr>
</tbody>
</table>
<p>Keyword arguments are passed on to
<a class="reference internal" href="../../api/collections_api.html#matplotlib.collections.LineCollection" title="matplotlib.collections.LineCollection"><tt class="xref py py-class docutils literal"><span class="pre">LineCollection</span></tt></a>.</p>
<p>Returns a <a class="reference internal" href="api.html#mpl_toolkits.mplot3d.art3d.Line3DCollection" title="mpl_toolkits.mplot3d.art3d.Line3DCollection"><tt class="xref py py-class docutils literal"><span class="pre">Line3DCollection</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/wire3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/wire3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/wire3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/wire3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/wire3d_demo1.png" src="../../_images/wire3d_demo1.png" />
</div>
</div>
<div class="section" id="surface-plots">
<span id="surface"></span><h2>Surface plots<a class="headerlink" href="#surface-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.plot_surface">
<tt class="descclassname">Axes3D.</tt><tt class="descname">plot_surface</tt><big>(</big><em>X</em>, <em>Y</em>, <em>Z</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.plot_surface" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a surface plot.</p>
<p>By default it will be colored in shades of a solid color,
but it also supports color mapping by supplying the <em>cmap</em>
argument.</p>
<table border="1" class="docutils">
<colgroup>
<col width="21%" />
<col width="79%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>X</em>, <em>Y</em>, <em>Z</em></td>
<td>Data values as 2D arrays</td>
</tr>
<tr class="row-odd"><td><em>rstride</em></td>
<td>Array row stride (step size)</td>
</tr>
<tr class="row-even"><td><em>cstride</em></td>
<td>Array column stride (step size)</td>
</tr>
<tr class="row-odd"><td><em>color</em></td>
<td>Color of the surface patches</td>
</tr>
<tr class="row-even"><td><em>cmap</em></td>
<td>A colormap for the surface patches.</td>
</tr>
<tr class="row-odd"><td><em>facecolors</em></td>
<td>Face colors for the individual patches</td>
</tr>
<tr class="row-even"><td><em>norm</em></td>
<td>An instance of Normalize to map values to colors</td>
</tr>
<tr class="row-odd"><td><em>vmin</em></td>
<td>Minimum value to map</td>
</tr>
<tr class="row-even"><td><em>vmax</em></td>
<td>Maximum value to map</td>
</tr>
<tr class="row-odd"><td><em>shade</em></td>
<td>Whether to shade the facecolors</td>
</tr>
</tbody>
</table>
<p>Other arguments are passed on to
<a class="reference internal" href="api.html#mpl_toolkits.mplot3d.art3d.Poly3DCollection" title="mpl_toolkits.mplot3d.art3d.Poly3DCollection"><tt class="xref py py-class docutils literal"><span class="pre">Poly3DCollection</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/surface3d_demo1.png" src="../../_images/surface3d_demo1.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo2.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo2.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo2.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo2.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/surface3d_demo21.png" src="../../_images/surface3d_demo21.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo3.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo3.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo3.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/surface3d_demo3.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/surface3d_demo31.png" src="../../_images/surface3d_demo31.png" />
</div>
</div>
<div class="section" id="tri-surface-plots">
<span id="trisurface"></span><h2>Tri-Surface plots<a class="headerlink" href="#tri-surface-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.plot_trisurf">
<tt class="descclassname">Axes3D.</tt><tt class="descname">plot_trisurf</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.plot_trisurf" title="Permalink to this definition">¶</a></dt>
<dd><table border="1" class="docutils">
<colgroup>
<col width="21%" />
<col width="79%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>X</em>, <em>Y</em>, <em>Z</em></td>
<td>Data values as 1D arrays</td>
</tr>
<tr class="row-odd"><td><em>color</em></td>
<td>Color of the surface patches</td>
</tr>
<tr class="row-even"><td><em>cmap</em></td>
<td>A colormap for the surface patches.</td>
</tr>
<tr class="row-odd"><td><em>norm</em></td>
<td>An instance of Normalize to map values to colors</td>
</tr>
<tr class="row-even"><td><em>vmin</em></td>
<td>Minimum value to map</td>
</tr>
<tr class="row-odd"><td><em>vmax</em></td>
<td>Maximum value to map</td>
</tr>
<tr class="row-even"><td><em>shade</em></td>
<td>Whether to shade the facecolors</td>
</tr>
</tbody>
</table>
<p>The (optional) triangulation can be specified in one of two ways;
either:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">plot_trisurf</span><span class="p">(</span><span class="n">triangulation</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
</pre></div>
</div>
<p>where triangulation is a <a class="reference internal" href="../../api/tri_api.html#matplotlib.tri.Triangulation" title="matplotlib.tri.Triangulation"><tt class="xref py py-class docutils literal"><span class="pre">Triangulation</span></tt></a>
object, or:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">plot_trisurf</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">Y</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
<span class="n">plot_trisurf</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">Y</span><span class="p">,</span> <span class="n">triangles</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
<span class="n">plot_trisurf</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">Y</span><span class="p">,</span> <span class="n">triangles</span><span class="o">=</span><span class="n">triangles</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
</pre></div>
</div>
<p>in which case a Triangulation object will be created. See
<a class="reference internal" href="../../api/tri_api.html#matplotlib.tri.Triangulation" title="matplotlib.tri.Triangulation"><tt class="xref py py-class docutils literal"><span class="pre">Triangulation</span></tt></a> for a explanation of
these possibilities.</p>
<p>The remaining arguments are:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">plot_trisurf</span><span class="p">(</span><span class="o">...</span><span class="p">,</span> <span class="n">Z</span><span class="p">)</span>
</pre></div>
</div>
<p>where <em>Z</em> is the array of values to contour, one per point
in the triangulation.</p>
<p>Other arguments are passed on to
<a class="reference internal" href="api.html#mpl_toolkits.mplot3d.art3d.Poly3DCollection" title="mpl_toolkits.mplot3d.art3d.Poly3DCollection"><tt class="xref py py-class docutils literal"><span class="pre">Poly3DCollection</span></tt></a></p>
<p><strong>Examples:</strong></p>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/trisurf3d_demo1.png" src="../../_images/trisurf3d_demo1.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2.py">Source code</a>)</p>
<div class="figure">
<img alt="../../_images/trisurf3d_demo2_001.png" src="../../_images/trisurf3d_demo2_001.png" />
<p class="caption">(<a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_00.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_00.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_00.pdf">pdf</a>)</p>
</div>
<div class="figure">
<img alt="../../_images/trisurf3d_demo2_011.png" src="../../_images/trisurf3d_demo2_011.png" />
<p class="caption">(<a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_01.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_01.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo2_01.pdf">pdf</a>)</p>
</div>
<div class="versionadded">
<p><span>New in version 1.2.0: </span>This plotting function was added for the v1.2.0 release.</p>
</div>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/trisurf3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/trisurf3d_demo1.png" src="../../_images/trisurf3d_demo1.png" />
</div>
</div>
<div class="section" id="contour-plots">
<span id="contour3d"></span><h2>Contour plots<a class="headerlink" href="#contour-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.contour">
<tt class="descclassname">Axes3D.</tt><tt class="descname">contour</tt><big>(</big><em>X</em>, <em>Y</em>, <em>Z</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.contour" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a 3D contour plot.</p>
<table border="1" class="docutils">
<colgroup>
<col width="17%" />
<col width="83%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>X</em>, <em>Y</em>,</td>
<td>Data values as numpy.arrays</td>
</tr>
<tr class="row-odd"><td><em>Z</em></td>
<td> </td>
</tr>
<tr class="row-even"><td><em>extend3d</em></td>
<td>Whether to extend contour in 3D (default: False)</td>
</tr>
<tr class="row-odd"><td><em>stride</em></td>
<td>Stride (step size) for extending contour</td>
</tr>
<tr class="row-even"><td><em>zdir</em></td>
<td>The direction to use: x, y or z (default)</td>
</tr>
<tr class="row-odd"><td><em>offset</em></td>
<td>If specified plot a projection of the contour
lines on this position in plane normal to zdir</td>
</tr>
</tbody>
</table>
<p>The positional and other keyword arguments are passed on to
<a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.contour" title="matplotlib.axes.Axes.contour"><tt class="xref py py-func docutils literal"><span class="pre">contour()</span></tt></a></p>
<p>Returns a <a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.contour" title="matplotlib.axes.Axes.contour"><tt class="xref py py-class docutils literal"><span class="pre">contour</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/contour3d_demo1.png" src="../../_images/contour3d_demo1.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo2.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo2.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo2.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo2.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/contour3d_demo21.png" src="../../_images/contour3d_demo21.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo3.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo3.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo3.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contour3d_demo3.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/contour3d_demo31.png" src="../../_images/contour3d_demo31.png" />
</div>
</div>
<div class="section" id="filled-contour-plots">
<span id="contourf3d"></span><h2>Filled contour plots<a class="headerlink" href="#filled-contour-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.contourf">
<tt class="descclassname">Axes3D.</tt><tt class="descname">contourf</tt><big>(</big><em>X</em>, <em>Y</em>, <em>Z</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.contourf" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a 3D contourf plot.</p>
<table border="1" class="docutils">
<colgroup>
<col width="16%" />
<col width="84%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>X</em>, <em>Y</em>,</td>
<td>Data values as numpy.arrays</td>
</tr>
<tr class="row-odd"><td><em>Z</em></td>
<td> </td>
</tr>
<tr class="row-even"><td><em>zdir</em></td>
<td>The direction to use: x, y or z (default)</td>
</tr>
<tr class="row-odd"><td><em>offset</em></td>
<td>If specified plot a projection of the filled contour
on this position in plane normal to zdir</td>
</tr>
</tbody>
</table>
<p>The positional and keyword arguments are passed on to
<a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.contourf" title="matplotlib.axes.Axes.contourf"><tt class="xref py py-func docutils literal"><span class="pre">contourf()</span></tt></a></p>
<p>Returns a <a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.contourf" title="matplotlib.axes.Axes.contourf"><tt class="xref py py-class docutils literal"><span class="pre">contourf</span></tt></a></p>
<div class="versionchanged">
<p><span>Changed in version 1.1.0: </span>The <em>zdir</em> and <em>offset</em> kwargs were added.</p>
</div>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/contourf3d_demo1.png" src="../../_images/contourf3d_demo1.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo2.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo2.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo2.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/contourf3d_demo2.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/contourf3d_demo22.png" src="../../_images/contourf3d_demo22.png" />
</div>
<div class="versionadded">
<p><span>New in version 1.1.0: </span>The feature demoed in the second contourf3d example was enabled as a
result of a bugfix for version 1.1.0.</p>
</div>
</div>
<div class="section" id="polygon-plots">
<span id="polygon3d"></span><h2>Polygon plots<a class="headerlink" href="#polygon-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.add_collection3d">
<tt class="descclassname">Axes3D.</tt><tt class="descname">add_collection3d</tt><big>(</big><em>col</em>, <em>zs=0</em>, <em>zdir='z'</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.add_collection3d" title="Permalink to this definition">¶</a></dt>
<dd><p>Add a 3D collection object to the plot.</p>
<p>2D collection types are converted to a 3D version by
modifying the object and adding z coordinate information.</p>
<dl class="docutils">
<dt>Supported are:</dt>
<dd><ul class="first last simple">
<li>PolyCollection</li>
<li>LineColleciton</li>
<li>PatchCollection</li>
</ul>
</dd>
</dl>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/polys3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/polys3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/polys3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/polys3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/polys3d_demo1.png" src="../../_images/polys3d_demo1.png" />
</div>
</div>
<div class="section" id="bar-plots">
<span id="bar3d"></span><h2>Bar plots<a class="headerlink" href="#bar-plots" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.bar">
<tt class="descclassname">Axes3D.</tt><tt class="descname">bar</tt><big>(</big><em>left</em>, <em>height</em>, <em>zs=0</em>, <em>zdir='z'</em>, <em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.bar" title="Permalink to this definition">¶</a></dt>
<dd><p>Add 2D bar(s).</p>
<table border="1" class="docutils">
<colgroup>
<col width="17%" />
<col width="83%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Argument</th>
<th class="head">Description</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>left</em></td>
<td>The x coordinates of the left sides of the bars.</td>
</tr>
<tr class="row-odd"><td><em>height</em></td>
<td>The height of the bars.</td>
</tr>
<tr class="row-even"><td><em>zs</em></td>
<td>Z coordinate of bars, if one value is specified
they will all be placed at the same z.</td>
</tr>
<tr class="row-odd"><td><em>zdir</em></td>
<td>Which direction to use as z (‘x’, ‘y’ or ‘z’)
when plotting a 2D set.</td>
</tr>
</tbody>
</table>
<p>Keyword arguments are passed onto <a class="reference internal" href="../../api/axes_api.html#matplotlib.axes.Axes.bar" title="matplotlib.axes.Axes.bar"><tt class="xref py py-func docutils literal"><span class="pre">bar()</span></tt></a>.</p>
<p>Returns a <a class="reference internal" href="api.html#mpl_toolkits.mplot3d.art3d.Patch3DCollection" title="mpl_toolkits.mplot3d.art3d.Patch3DCollection"><tt class="xref py py-class docutils literal"><span class="pre">Patch3DCollection</span></tt></a></p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/bars3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/bars3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/bars3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/bars3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/bars3d_demo1.png" src="../../_images/bars3d_demo1.png" />
</div>
</div>
<div class="section" id="d-plots-in-3d">
<span id="dcollections3d"></span><h2>2D plots in 3D<a class="headerlink" href="#d-plots-in-3d" title="Permalink to this headline">¶</a></h2>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/2dcollections3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/2dcollections3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/2dcollections3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/2dcollections3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/2dcollections3d_demo1.png" src="../../_images/2dcollections3d_demo1.png" />
</div>
</div>
<div class="section" id="text">
<span id="text3d"></span><h2>Text<a class="headerlink" href="#text" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt id="mpl_toolkits.mplot3d.Axes3D.text">
<tt class="descclassname">Axes3D.</tt><tt class="descname">text</tt><big>(</big><em>x</em>, <em>y</em>, <em>z</em>, <em>s</em>, <em>zdir=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#mpl_toolkits.mplot3d.Axes3D.text" title="Permalink to this definition">¶</a></dt>
<dd><p>Add text to the plot. kwargs will be passed on to Axes.text,
except for the <tt class="xref py py-obj docutils literal"><span class="pre">zdir</span></tt> keyword, which sets the direction to be
used as the z direction.</p>
</dd></dl>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/text3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/text3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/text3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/text3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/text3d_demo1.png" src="../../_images/text3d_demo1.png" />
</div>
</div>
<div class="section" id="subplotting">
<span id="dsubplots"></span><h2>Subplotting<a class="headerlink" href="#subplotting" title="Permalink to this headline">¶</a></h2>
<p>Having multiple 3D plots in a single figure is the same
as it is for 2D plots. Also, you can have both 2D and 3D plots
in the same figure.</p>
<div class="versionadded">
<p><span>New in version 1.0.0: </span>Subplotting 3D plots was added in v1.0.0. Earlier version can not
do this.</p>
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/subplot3d_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/subplot3d_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/subplot3d_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/subplot3d_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/subplot3d_demo1.png" src="../../_images/subplot3d_demo1.png" />
</div>
<p>(<a class="reference external" href="../../mpl_examples/mplot3d/mixed_subplots_demo.py">Source code</a>, <a class="reference external" href="../../mpl_examples/mplot3d/mixed_subplots_demo.png">png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/mixed_subplots_demo.hires.png">hires.png</a>, <a class="reference external" href="../../mpl_examples/mplot3d/mixed_subplots_demo.pdf">pdf</a>)</p>
<div class="figure">
<img alt="../../_images/mixed_subplots_demo1.png" src="../../_images/mixed_subplots_demo1.png" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="api.html" title="mplot3d API"
>next</a> |</li>
<li class="right" >
<a href="index.html" title="mplot3d"
>previous</a> |</li>
<li><a href="../../index.html">home</a>| </li>
<li><a href="../../examples/index.html">examples</a>| </li>
<li><a href="../../gallery.html">gallery</a>| </li>
<li><a href="../../api/pyplot_summary.html">pyplot</a>| </li>
<li><a href="../../contents.html">docs</a> »</li>
<li><a href="../index.html" >Toolkits</a> »</li>
<li><a href="index.html" >mplot3d</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2002 - 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team; 2012 - 2013 The matplotlib development team.
Last updated on Oct 10, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b2.
</div>
</body>
</html>