Code Monkey home page Code Monkey logo

Comments (3)

schlegelp avatar schlegelp commented on July 17, 2024 1

Cool! Just to clarify: the modified version will work in IPython but not in the standard Python console: i.e. the %gui will cause an error. You could either make separate examples or use something like this to make it work in both environments:

is_ipython = False

try:
    if 'terminal' in str(type(get_ipython())):
        is_ipython = True
except:
    pass

if is_ipython:
    # Initialize GUI event loop
    %gui qt5

    # Tell vtkplotter not to embed the Window
    from vtkplotter import embedWindow
    embedWindow(False)

from PyQt5 import Qt
from vtk.qt.QVTKRenderWindowInteractor import QVTKRenderWindowInteractor

from vtkplotter import Plotter, Cone

class MainWindow(Qt.QMainWindow):
    def __init__(self, parent=None):

        Qt.QMainWindow.__init__(self, parent)
        self.frame = Qt.QFrame()
        self.vl = Qt.QVBoxLayout()
        self.vtkWidget = QVTKRenderWindowInteractor(self.frame)
        self.vl.addWidget(self.vtkWidget)

        vp = Plotter(qtWidget=self.vtkWidget, axes=4, bg='white')

        vp += Cone()
        vp.show()      # create renderer and add the actors

        # set-up the rest of the Qt window
        self.frame.setLayout(self.vl)
        self.setCentralWidget(self.frame)

        self.show()    # <--- show the Qt Window

if not is_ipython:
    app = Qt.QApplication([])

window = MainWindow()

from vedo.

marcomusy avatar marcomusy commented on July 17, 2024 1

thanks, indeed my idea was to make 2 separate examples!
M

from vedo.

marcomusy avatar marcomusy commented on July 17, 2024

Thanks a lot Philipp for fixing this! I'll modify the example in the next release.
M

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.