Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to open two seperate windows in vedo ? #1122

Closed
OhmPuchiss opened this issue May 18, 2024 · 4 comments
Closed

How to open two seperate windows in vedo ? #1122

OhmPuchiss opened this issue May 18, 2024 · 4 comments

Comments

@OhmPuchiss
Copy link

I want to open two vedo windows.

@ZiguoAtGitHub
Copy link

Creating two instances of Plotter?
Maybe like this:

plt1=Plotter()
plt2=Plotter()
...
plt1.show(,,interactive=False)
plt2.show(,,interactive=False)

@OhmPuchiss
Copy link
Author

image How to open these two windows ? I want one window to open opencv window and one for vedo. Two windows can communicate with one another.

@OhmPuchiss
Copy link
Author

Or how to further run the script after the plt.show() is used.

@marcomusy
Copy link
Owner

marcomusy commented May 18, 2024

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants