Skip to content

Commit 85a6704

Browse files
committed
added/fixed headers
1 parent 9396d98 commit 85a6704

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

examples/mplot3d/2dcollections3d_demo.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
'''
2-
Demonstrates using ax.plot's zdir keyword to plot 2D scatterplot data on
1+
"""
2+
=======================
3+
Plot 2D data on 3D plot
4+
=======================
5+
6+
Demonstrates using ax.plot's zdir keyword to plot 2D data on
37
selective axes of a 3D plot.
4-
'''
8+
"""
59

610
from mpl_toolkits.mplot3d import Axes3D
711
import numpy as np

examples/mplot3d/bars3d_demo.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
'''
1+
"""
2+
========================================
3+
Create 2D bar graphs in different planes
4+
========================================
5+
26
Demonstrates making a 3D plot which has 2D bar graphs projected onto
37
planes y=0, y=1, etc.
4-
'''
8+
"""
59

610
from mpl_toolkits.mplot3d import Axes3D
711
import matplotlib.pyplot as plt

examples/mplot3d/hist3d_demo.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
'''
1+
"""
2+
==============================
3+
Create 3D histogram of 2D data
4+
==============================
5+
26
Demo of a histogram for 2 dimensional data as a bar graph in 3D.
3-
'''
7+
"""
48

59
from mpl_toolkits.mplot3d import Axes3D
610
import matplotlib.pyplot as plt

examples/mplot3d/pathpatch3d_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
============================
3-
Draw flat objects in 3d plot
3+
Draw flat objects in 3D plot
44
============================
55
66
Demonstrate using pathpatch_2d_to_3d to 'draw' shapes and text on a 3D plot.

examples/mplot3d/polys3d_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
=============================================
3-
Generate polygons to fill under 3d line graph
3+
Generate polygons to fill under 3D line graph
44
=============================================
55
66
Demonstrate how to create polygons which fill the space under a line

0 commit comments

Comments
 (0)