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)