Guest User

Untitled

a guest
Nov 15th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. fig = plt.figure()
  2. views = [(0, 0), (90, 0), (0, 90)]
  3. for i (elev, azim) in enumerate(views):
  4. ax = fig.add_subplot(1, 3, i+1, projection='3d')
  5. plot_heavy_data(ax) # expensive call
  6. ax.view_init(elev, azim)
Add Comment
Please, Sign In to add comment