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

Skip to content

Commit a0737fd

Browse files
committed
MNT: remove plt.ion() from demos
1 parent 1d66b42 commit a0737fd

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

examples/mplot3d/rotate_axes3d_demo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import matplotlib.pyplot as plt
33
import numpy as np
44

5-
plt.ion()
65

76
fig = plt.figure()
87
ax = fig.add_subplot(111, projection='3d')

examples/mplot3d/wire3d_animation_demo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def generate(X, Y, phi):
1212
R = 1 - np.sqrt(X**2 + Y**2)
1313
return np.cos(2 * np.pi * X + phi) * R
1414

15-
plt.ion()
1615
fig = plt.figure()
1716
ax = fig.add_subplot(111, projection='3d')
1817

0 commit comments

Comments
 (0)