Vpython userspin不起作用



我有一个关于按钮单击的函数调用,用于显示许多长方体。但是,我希望能够在用户鼠标拖动时旋转框架以获得所需的视角(用户首选(但是,我似乎无法旋转和缩放我的显示窗口。

编辑:我发现右键单击拖动它会改变视角。但是,它不会得到反映。奇怪的是,只有在我最大化然后恢复屏幕后,它才会反映出来。我可以做一些设置来使其无缝工作。此外,第一次显示发生在我将窗口从其初始位置移动后。否则它在启动时只是空白!!请告知

def testDraw():
    global containers
    myscene = display(title='Diagram')
    #myscene.material = materials.wood
    myscene.select()
    myscene.exit=False
    #myscene.userspin = True
    myscene.userspin = 1
    myscene.forward = (.1, -.3, -1)
    mybox = [['','','','','','','',''] for x in range(len(containers))]
    for x in range(len(containers)):
        for y in range(len(containers[x])):
            mybox[x]=box(pos=(float(containers[x][1])+float(containers[x][2])/2,float(containers[x][3])+float(containers[x][4])/2,float(containers[x][5])+float(containers[x][6])/2),width=float(containers[x][6]),height=float(containers[x][4]),length=float(containers[x][2]))
    #,color='color.'+containers[x][7]
    #mybox = box(pos=(2.5,1,5), length=10, height=2, width=5,color=color.blue)
    #mybox2 = box(pos=(12.5,1,5), length=10, height=2, width=5,color=color.green)
#Name,length0,length1,height0,height1,width0,width1,color
containers=[['Container_1','`enter code here`0','2','0','7','0','2','blue'],
            ['Container_2','2','5','0','10','0','2','green'],
            ['Container_3','7','10','0','5','0','2','red']]

我不明白"它没有得到反映"是什么意思。"它"是什么?此外,您尚未提供可运行的程序,因此很难知道上下文是什么。

我会宣传一个更好的提出 VPython 问题的地方是在 VPython 论坛

https://groups.google.com/forum/?fromgroups&hl=en#!forum/vpython-users

相关内容

  • 没有找到相关文章

最新更新