我在 Raspbian GNU/Linux 10 (buster) armv7l 上安装了 trimesh 3.9.32。这个片段:
import trimesh
mesh = trimesh.creation.cylinder(1, height=1)
mesh.show()
显示一个窗口溢出到我的第二个显示器中。我想控制窗口大小和位置。我尝试使用trimesh.viewer.SceneViewer
,但我得到了AttributeError: module 'trimesh' has no attribute 'viewer'
。有什么方法可以在我的主显示器上设置窗口大小和位置或使其全屏显示?