Giter Club home page Giter Club logo

Comments (5)

OhmPuchiss avatar OhmPuchiss commented on June 16, 2024 1

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 ?

from vedo.

OhmPuchiss avatar OhmPuchiss commented on June 16, 2024

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

from vedo.

marcomusy avatar marcomusy commented on June 16, 2024

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()

from vedo.

marcomusy avatar marcomusy commented on June 16, 2024

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()

from vedo.

marcomusy avatar marcomusy commented on June 16, 2024

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! :)

from vedo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.