使用Matplotlib绘制通过螺旋连接的点

时间:2016-05-30 08:15:58

标签: python matplotlib

我想使用Matplotlib在其表面绘制一个带点的球体。这些点应通过螺旋连接,螺旋从球体的一侧螺旋到另一侧。 为了澄清这一点,情节应该或多或少看起来像这样:Sphere with points and spiral 有没有人知道如何做到这一点?

1 个答案:

答案 0 :(得分:1)

需要知道螺旋,公式或点集的参数。

然而,我发布了一个代码,用于绘制一个球体上带有标记的线条,以便开始:

import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

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

u = np.linspace(0, 2 * np.pi, 100)
v = np.linspace(0, np.pi, 100)
x = 1 * np.outer(np.cos(u), np.sin(v))
y = 1 * np.outer(np.sin(u), np.sin(v))
z = 1 * np.outer(np.ones(np.size(u)), np.cos(v))
elev = 10.
rot = 80. / 180. * np.pi
ax.plot_surface(x, y, z,  rstride=1, cstride=1, color='y', linewidth=0, alpha=0.5)

# plot lines in spherical coordinates system
a = np.array([-np.sin(elev / 180 * np.pi), 0, np.cos(elev / 180 * np.pi)])
b = np.array([0, 1, 0])
b = b * np.cos(rot) + np.cross(a, b) * np.sin(rot) + a * np.dot(a, b) * (1 - np.cos(rot))
ax.plot(np.sin(u),np.cos(u),0,color='r', linestyle = '-', marker='o', linewidth=2.5)

ax.view_init(elev = elev, azim = 0)
plt.show()

enter image description here