Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 653ecf7

Browse files
committed
Updated the position of a few of the text examples because they were overlapping and hard to read.
1 parent 518afd8 commit 653ecf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/mplot3d/text3d_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
ax = fig.gca(projection='3d')
66

77
zdirs = (None, 'x', 'y', 'z', (1, 1, 0), (1, 1, 1))
8-
xs = (2, 6, 4, 9, 7, 2)
8+
xs = (2, 4, 4, 9, 6, 2)
99
ys = (6, 4, 8, 7, 2, 2)
10-
zs = (4, 2, 5, 6, 1, 7)
10+
zs = (8, 2, 5, 6, 1, 7)
1111

1212
for zdir, x, y, z in zip(zdirs, xs, ys, zs):
1313
label = '(%d, %d, %d), dir=%s' % (x, y, z, zdir)

0 commit comments

Comments
 (0)