ParaView Python 脚本导致可视化工具包无响应 - Windows 上的 Win32OpenGL
ParaView Python script causes non responding Visualization Toolkit - Win32OpenGL on Windows
正如我在 here 尝试通过以下方式渲染锥体示例时所报告的那样:
from paraview.simple import *
cone = Cone()
Show(cone)
Render()
我得到一个无响应 window:
我的 Python 版本是:
Python 2.7.15 (v2.7.15:ca079a3ea3, Apr 30 2018, 16:30:26) [MSC v.1500 64 bit (AMD64)] on win32
我在 Windows 10 64 位。如果您能帮助我了解问题所在以及如何解决,我将不胜感激。
只需使用Interact()
方法即可。
from paraview.simple import *
cone = Cone()
Show(cone)
Interact()
使用q
键停止交互。
正如我在 here 尝试通过以下方式渲染锥体示例时所报告的那样:
from paraview.simple import *
cone = Cone()
Show(cone)
Render()
我得到一个无响应 window:
我的 Python 版本是:
Python 2.7.15 (v2.7.15:ca079a3ea3, Apr 30 2018, 16:30:26) [MSC v.1500 64 bit (AMD64)] on win32
我在 Windows 10 64 位。如果您能帮助我了解问题所在以及如何解决,我将不胜感激。
只需使用Interact()
方法即可。
from paraview.simple import *
cone = Cone()
Show(cone)
Interact()
使用q
键停止交互。