Python - 3D Grafikler
Python ayrıca 3 boyutlu grafikler oluşturabilir. Mevcut iki boyutlu bir arsa bir alt plan eklemeyi ve projeksiyon parametresini 3d olarak atamayı içerir.
3B Çizim Çizimi
3dPlot, mevcut bir 2d grafiğe bir alt grafik eklemek için mpl_toolkits.mplot3d tarafından çizilir.
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
chart = plt.figure()
chart3d = chart.add_subplot(111, projection='3d')
# Create some test data.
X, Y, Z = axes3d.get_test_data(0.08)
# Plot a wireframe.
chart3d.plot_wireframe(X, Y, Z, color='r',rstride=15, cstride=10)
plt.show()
Onun output aşağıdaki gibidir -