我有一个数据列表,我想在情节上进行动画处理,我目前正在使用:
graph1=gdots(pos = pvalues) #pvalues is list of points
while t <= t_max:
rate(200)
... #pvalues is updated to new contain the new points
graph1=gdots(pos = pvalues)
这里发生的是旧点保留在图上,因此当我希望点移动时会追踪线。我已经尝试删除图表,使其不可见,但都不起作用。
graph1.visible = False
del graph1
包括以上内容对显示没有明显差异。我已经对此进行了很多搜索,但是 VPython 文档似乎不完整,令人讨厌。