You are reading an old version of the documentation (v2.1.0). For the latest version see https://matplotlib.org/stable/gallery/mplot3d/surface3d_2.html
matplotlib
Fork me on GitHub


Travis-CI:

Related Topics

This Page

3D surface (solid color)ΒΆ

Demonstrates a very basic plot of a 3D surface using a solid color.

../../_images/sphx_glr_surface3d_2_001.png
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np


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

# Make data
u = np.linspace(0, 2 * np.pi, 100)
v = np.linspace(0, np.pi, 100)
x = 10 * np.outer(np.cos(u), np.sin(v))
y = 10 * np.outer(np.sin(u), np.sin(v))
z = 10 * np.outer(np.ones(np.size(u)), np.cos(v))

# Plot the surface
ax.plot_surface(x, y, z, color='b')

plt.show()

Total running time of the script: ( 0 minutes 0.153 seconds)

Gallery generated by Sphinx-Gallery