“Wireframes dan plot permukaan” Kode Jawaban

Wireframes dan plot permukaan

ax = plt.axes(projection='3d')
ax.plot_surface(X, Y, Z, rstride=1, cstride=1,
                cmap='viridis', edgecolor='none')
ax.set_title('surface');
Bad Bee

Wireframes dan plot permukaan

fig = plt.figure()
ax = plt.axes(projection='3d')
ax.plot_wireframe(X, Y, Z, color='black')
ax.set_title('wireframe');
Bad Bee

Jawaban yang mirip dengan “Wireframes dan plot permukaan”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya