Ich schreibe ein Python-Programm, um eine Tangentenlinie entlang einer 3D-Kurve zu animieren. Meine Tangentenlinie bewegt sich jedoch nicht. Ich denke das Problem ist
line.set_data(np.array(Tangent[:,0]).T,np.array(Tangent[:,1]).T)
in, animate(i)
aber ich kann nicht herausfinden. Jede Hilfe wird geschätzt. Das Folgende ist der Code.
from mpl_toolkits import mplot3d
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
import matplotlib
matplotlib.use( 'tkagg' )
plt.style.use('seaborn-pastel')
fig = plt.figure()
ax = plt.axes(projection='3d')
ax = plt.axes(projection='3d')
# Data for a three-dimensional line
zline = np.linspace(0, 15, 1000)
xline = np.sin(zline)
yline = np.cos(zline)
ax.plot3D(xline, yline, zline, 'red')
def curve(t):
return [np.sin(t),np.cos(t),t]
def vector_T(t):
T = [np.cos(t),-np.sin(t),1]
return T/np.linalg.norm(T)
len = 2
def tangent_line(t):
P = np.add(curve(t),len*vector_T(t))
Q = np.subtract(curve(t),len*vector_T(t))
return np.array([P, Q]).T
t0 = 0
Tangent=tangent_line(t0)
line, = ax.plot3D(Tangent[0], Tangent[1], Tangent[2], 'green')
def init():
line.set_data([], [])
return line,
def animate(i):
t0 = 15* (i/200)
Tangent=tangent_line(t0)
#print(Tangent)
line.set_data(np.array(Tangent[:,0]).T,np.array(Tangent[:,1]).T)
return line,
anim = FuncAnimation(fig, animate, init_func=init,
frames=200, interval=20, blit=True)
plt.show()
python
numpy
matplotlib
animation
xpaul
quelle
quelle
[0]
greift einfach auf das erste Element zu. Obwohl Sie Pattern Matching (first, = some_list
) verwenden können, um eine Liste mit einem einzelnen Element zu entpacken, finde ich die explizite Indizierung (first = some_list[0]
) viel natürlicher.