fork download
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3. from mpl_toolkits.mplot3d import Axes3D
  4.  
  5. # Create figure and 3D axis
  6. fig = plt.figure(figsize=(8, 6))
  7. ax = fig.add_subplot(111, projection='3d')
  8.  
  9. # Cone parameters
  10. radius = 1.0 # Base radius
  11. height = 2.0 # Height of cone
  12. resolution = 100 # Number of points in circumference and height
  13.  
  14. # Create the angular and height parameters
  15. theta = np.linspace(0, 2 * np.pi, resolution)
  16. h = np.linspace(0, height, resolution)
  17.  
  18. # Create the cone surface
  19. # The radius decreases linearly from base to apex
  20. theta_grid, h_grid = np.meshgrid(theta, h)
  21. x = radius * (1 - h_grid/height) * np.cos(theta_grid)
  22. y = radius * (1 - h_grid/height) * np.sin(theta_grid)
  23. z = h_grid
  24.  
  25. # Plot the cone surface
  26. ax.plot_surface(x, y, z, color='royalblue', alpha=0.8)
  27.  
  28. # Add labels and title
  29. ax.set_xlabel('X axis')
  30. ax.set_ylabel('Y axis')
  31. ax.set_zlabel('Z axis')
  32. ax.set_title('3D Cone Visualization', pad=20)
  33.  
  34. # Set equal aspect ratio for better visualization
  35. ax.set_box_aspect([1, 1, 1]) # Equal aspect ratio
  36.  
  37. # Show the plot
  38. plt.tight_layout()
  39. plt.show()
Success #stdin #stdout #stderr 3.6s 70252KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Fontconfig error: No writable cache directories