-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy pathtest_legend3d.py
More file actions
116 lines (90 loc) · 4.31 KB
/
test_legend3d.py
File metadata and controls
116 lines (90 loc) · 4.31 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
import sys
import numpy as np
import matplotlib as mpl
from matplotlib.colors import same_color
from matplotlib.testing.decorators import image_comparison
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import art3d
@image_comparison(['legend_plot.png'], remove_text=True, style='mpl20')
def test_legend_plot():
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
x = np.arange(10)
ax.plot(x, 5 - x, 'o', zdir='y', label='z=1')
ax.plot(x, x - 5, 'o', zdir='y', label='z=-1')
ax.legend()
@image_comparison(['legend_bar.png'], remove_text=True, style='mpl20')
def test_legend_bar():
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
x = np.arange(10)
b1 = ax.bar(x, x, zdir='y', align='edge', color='m')
b2 = ax.bar(x, x[::-1], zdir='x', align='edge', color='g')
ax.legend([b1[0], b2[0]], ['up', 'down'])
@image_comparison(['fancy.png'], remove_text=True, style='mpl20',
tol=0.01 if sys.platform == 'darwin' else 0)
def test_fancy():
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
ax.plot(np.arange(10), np.full(10, 5), np.full(10, 5), 'o--', label='line')
ax.scatter(np.arange(10), np.arange(10, 0, -1), label='scatter')
ax.errorbar(np.full(10, 5), np.arange(10), np.full(10, 10),
xerr=0.5, zerr=0.5, label='errorbar')
ax.legend(loc='lower left', ncols=2, title='My legend', numpoints=1)
def test_linecollection_scaled_dashes():
lines1 = [[(0, .5), (.5, 1)], [(.3, .6), (.2, .2)]]
lines2 = [[[0.7, .2], [.8, .4]], [[.5, .7], [.6, .1]]]
lines3 = [[[0.6, .2], [.8, .4]], [[.5, .7], [.1, .1]]]
lc1 = art3d.Line3DCollection(lines1, linestyles="--", lw=3)
lc2 = art3d.Line3DCollection(lines2, linestyles="-.")
lc3 = art3d.Line3DCollection(lines3, linestyles=":", lw=.5)
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
ax.add_collection(lc1, autolim="_datalim_only")
ax.add_collection(lc2, autolim="_datalim_only")
ax.add_collection(lc3, autolim="_datalim_only")
leg = ax.legend([lc1, lc2, lc3], ['line1', 'line2', 'line 3'])
h1, h2, h3 = leg.legend_handles
for oh, lh in zip((lc1, lc2, lc3), (h1, h2, h3)):
assert oh.get_linestyles()[0] == lh._dash_pattern
def test_handlerline3d():
# Test marker consistency for monolithic Line3D legend handler.
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
ax.scatter([0, 1], [0, 1], marker="v")
handles = [art3d.Line3D([0], [0], [0], marker="v")]
leg = ax.legend(handles, ["Aardvark"], numpoints=1)
assert handles[0].get_marker() == leg.legend_handles[0].get_marker()
def test_contour_legend_elements():
x, y = np.mgrid[1:10, 1:10]
h = x * y
colors = ['blue', '#00FF00', 'red']
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
cs = ax.contour(x, y, h, levels=[10, 30, 50], colors=colors, extend='both')
artists, labels = cs.legend_elements()
assert labels == ['$x = 10.0$', '$x = 30.0$', '$x = 50.0$']
assert all(isinstance(a, mpl.lines.Line2D) for a in artists)
assert all(same_color(a.get_color(), c)
for a, c in zip(artists, colors))
def test_contourf_legend_elements():
x, y = np.mgrid[1:10, 1:10]
h = x * y
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'))
cs = ax.contourf(x, y, h, levels=[10, 30, 50],
colors=['#FFFF00', '#FF00FF', '#00FFFF'],
extend='both')
cs.cmap = cs.cmap.with_extremes(over='red', under='blue')
cs.changed()
artists, labels = cs.legend_elements()
assert labels == ['$x \\leq -1e+250s$',
'$10.0 < x \\leq 30.0$',
'$30.0 < x \\leq 50.0$',
'$x > 1e+250s$']
expected_colors = ('blue', '#FFFF00', '#FF00FF', 'red')
assert all(isinstance(a, mpl.patches.Rectangle) for a in artists)
assert all(same_color(a.get_facecolor(), c)
for a, c in zip(artists, expected_colors))
def test_legend_Poly3dCollection():
verts = np.asarray([[0, 0, 0], [0, 1, 1], [1, 0, 1]])
mesh = art3d.Poly3DCollection([verts], label="surface")
fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
mesh.set_edgecolor('k')
handle = ax.add_collection3d(mesh)
leg = ax.legend()
assert (leg.legend_handles[0].get_facecolor()
== handle.get_facecolor()).all()