gpt4 book ai didi

python - 如何在 mayavi 动画中捕捉键盘事件

转载 作者:太空宇宙 更新时间:2023-11-04 06:06:09 25 4
gpt4 key购买 nike

我正在寻找一种捕捉键盘事件的方法,以便在 mayavi 动画中循环浏览不同的数据集。

我的基本循环是:

while 1:
time = TIME() - zero
wx.Yield()
atomsanim[:,:3] = atoms[:,3:]*cos(speed*time) + atoms[:,:3]
f.scene.disable_render = True
atom_index = 0
for t, p in zip(types, plots):
ms = p.mlab_source
start = atom_index
stop = atom_index+t
ms.set(x=atomsanim[start:stop,0],y=atomsanim[start:stop,1],z=atomsanim[start:stop,2])
atom_index += t
f.scene.disable_render = False

mlab.show()

最佳答案

谷歌搜索后我找到了这个页面:http://osdir.com/ml/python-enthought-devel/2009-01/msg00325.html

这几乎解决了我的问题

scene.interactor.add_observer('KeyPressEvent', your_function); 
def your_function(vtk_obj, event):

... and then play with vtk_obj.GetKeyCode()

关于python - 如何在 mayavi 动画中捕捉键盘事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21944382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com