Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 VPython 中有这样的图:graphX = gcurve(color = color.cyan),如何在不同的窗口(不同的轴集)中制作另一个图(graphY = gcurve(color = color.red))?
使用 gdisplay() 创建图形窗口:
from visual.graph import * graphX = gcurve(color = color.cyan) gdisplay() graphY = gcurve(color = color.red)