“График 3D Python” Ответ

График 3D Python

fig = plt.figure(figsize=(4,4))

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

ax.scatter(2,3,4) # plot the point (2,3,4) on the figure

plt.show()
Real Raven

3D Graph Python

plot_trisurf(X, Y, ...)
plot_trisurf(X, Y, triangles, ...)
plot_trisurf(X, Y, triangles=triangles, ...)
Lazy Lynx

Ответы похожие на “График 3D Python”

Вопросы похожие на “График 3D Python”

Больше похожих ответов на “График 3D Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования