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 multiple panels on one window ? #1106

Open
OhmPuchiss opened this issue Apr 27, 2024 · 5 comments
Open

how to open multiple panels on one window ? #1106

OhmPuchiss opened this issue Apr 27, 2024 · 5 comments

Comments

@OhmPuchiss
Copy link

No description provided.

@OhmPuchiss
Copy link
Author

Is there anyway to make the inset to be interactive ? (Accept the callback function)

@marcomusy
Copy link
Owner

You can try with

from vedo import *

plt = Plotter(bg2='bisque', size=(1000,800), interactive=False)

e = Volume(dataurl+"embryo.tif").isosurface()
e.normalize().shift(-2,-1.5,-2).c("gold")
plt.show(e, viewup='z')

ex = e.clone().scale(0.25).pos(0,0.1,0.1).alpha(0.1).lighting('off')
inset = plt.add_inset(Axes(ex), ex, pos=(0.1,0.1), size=0.15, draggable=1)

def ff(widget, evt_name):
    print("->>>", evt_name, [widget])
    plt.render()

inset.AddObserver("AnyEvent", ff)

plt.interactive().close()

@OhmPuchiss
Copy link
Author

Thank you so much. I saw that vedo can be integrated with Qt. Is it also able to integrate with PySide2 ?
P.S. I want to support vedo. Whaat can I do ?

@marcomusy
Copy link
Owner

You're welcome! I just checked vedo can work out of the box with pyside6, hopefully this is also true for pyside2.
Here is a minimal example:

from PySide6.QtWidgets import QApplication
from vtk.qt.QVTKRenderWindowInteractor import QVTKRenderWindowInteractor
import vedo

sphere = vedo.Sphere().lw(1)
axes = vedo.Axes(sphere)

app = QApplication([])
widget = QVTKRenderWindowInteractor()
plt = vedo.Plotter(qt_widget=widget, axes=14, bg2='blue9')

plt.add(sphere, axes)
plt.show(viewup='z')

widget.show()
app.exec()

@marcomusy
Copy link
Owner

I want to support vedo. Whaat can I do ?

You can do it at https://github.com/marcomusy
And of course any PR to improve the library is super-highly appreciated! :)

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

2 participants