vedo
vedo copied to clipboard
How to open two seperate windows in vedo ?
I want to open two vedo windows.
Creating two instances of Plotter? Maybe like this:
plt1=Plotter() plt2=Plotter() ... plt1.show(,,interactive=False) plt2.show(,,interactive=False)
Or how to further run the script after the plt.show() is used.
Try
vedo --search multi
vedo --run multiwindows1
vedo --run multiwindows2
Or how to further run the script after the plt.show() is used.
plt.show(..., interactive=False)