fork download
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3. from mpl_toolkits.mplot3d import Axes3D
  4.  
  5. fig = plt.figure()
  6. ax = fig.add_subplot(111, projection='3d')
  7.  
  8. # Define the cone parameters
  9. radius = 1
  10. height = 2
  11.  
  12. # Create the cone
  13. u = np.linspace(0, 2 * np.pi, 100)
  14. v = np.linspace(0, height, 100)
  15. x = radius * np.outer(np.cos(u), np.ones(100))
  16. y = radius * np.outer(np.sin(u), np.ones(100))
  17. z = np.outer(np.ones(100), v)
  18.  
  19. ax.plot_surface(x, y, z, color='b')
  20.  
  21. plt.show()
Success #stdin #stdout #stderr 3.55s 69884KB
stdin
12
stdout
Standard output is empty
stderr
Fontconfig error: No writable cache directories