You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to run create_movie_3D.py, the script fails on line 213. fig, ax = plt.subplots(subplot_kw=dict(projection='3d'), figsize=(8, 8))
with ValueError: Unknown projection '3d'
It appears this import fixes the problem. from mpl_toolkits.mplot3d import Axes3D
However, I am unsure if this is the intended display/outcome.
The text was updated successfully, but these errors were encountered:
When attempting to run create_movie_3D.py, the script fails on line 213.
fig, ax = plt.subplots(subplot_kw=dict(projection='3d'), figsize=(8, 8))
with
ValueError: Unknown projection '3d'
It appears this import fixes the problem.
from mpl_toolkits.mplot3d import Axes3D
However, I am unsure if this is the intended display/outcome.
The text was updated successfully, but these errors were encountered: