python - 在 Matplotlib 中绘制一个 3d 立方体、一个球体和一个向量

标签 python matplotlib 3d geometry

我搜索了如何用 Matplotlib 尽可能少的指令来绘制一些东西,但我在文档中没有找到任何帮助。

我想绘制以下内容:

  • 以 0 为中心,边长为 2 的线框立方体
  • 一个以 0 为中心、半径为 1 的“线框”球体
  • 坐标 [0, 0, 0] 处的点
  • 从该点开始并到 [1, 1, 1] 的向量

怎么做?

最佳答案

有点复杂,但是你可以通过以下代码绘制所有对象:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
from itertools import product, combinations


fig = plt.figure()
ax = fig.gca(projection='3d')
ax.set_aspect("equal")

# draw cube
r = [-1, 1]
for s, e in combinations(np.array(list(product(r, r, r))), 2):
    if np.sum(np.abs(s-e)) == r[1]-r[0]:
        ax.plot3D(*zip(s, e), color="b")

# draw sphere
u, v = np.mgrid[0:2*np.pi:20j, 0:np.pi:10j]
x = np.cos(u)*np.sin(v)
y = np.sin(u)*np.sin(v)
z = np.cos(v)
ax.plot_wireframe(x, y, z, color="r")

# draw a point
ax.scatter([0], [0], [0], color="g", s=100)

# draw a vector
from matplotlib.patches import FancyArrowPatch
from mpl_toolkits.mplot3d import proj3d


class Arrow3D(FancyArrowPatch):

    def __init__(self, xs, ys, zs, *args, **kwargs):
        FancyArrowPatch.__init__(self, (0, 0), (0, 0), *args, **kwargs)
        self._verts3d = xs, ys, zs

    def draw(self, renderer):
        xs3d, ys3d, zs3d = self._verts3d
        xs, ys, zs = proj3d.proj_transform(xs3d, ys3d, zs3d, renderer.M)
        self.set_positions((xs[0], ys[0]), (xs[1], ys[1]))
        FancyArrowPatch.draw(self, renderer)

a = Arrow3D([0, 1], [0, 1], [0, 1], mutation_scale=20,
            lw=1, arrowstyle="-|>", color="k")
ax.add_artist(a)
plt.show()

output_figure

关于python - 在 Matplotlib 中绘制一个 3d 立方体、一个球体和一个向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11140163/

相关文章:

python - python 中的 slider

python - 有没有办法在不关闭窗口的情况下更新 matplotlib 图?

c - 如何使用 PETSc 可缩放非线性方程求解器设置 3d FEM 求解器?

math - 将 3D 点投影到 2D 平面

Python删除内括号并保留外括号

python - 为什么 numpy.random.dirichlet() 不接受多维数组?

Python:从网页中获取乘法文本值

python - 运行时错误: main thread is not in main loop using Matplotlib with Django

css - 滚动时更改 3D 透视 - 固定消失点

python - 在 Python 中搜索对象列表