Giter Site home page Giter Site logo

Comments (2)

larsoner avatar larsoner commented on July 20, 2024

You haven't used pyvistaqt at all to do this plotting but rather pyvista. So this is either a pyvista bug or -- I would probably argue -- a usage bug where if you want to use pyvista + Qt you should use pyvistaqt.BackgroundPlotter not pyvista.Plotter. Can you try incorporating BackgroundPlotter and adding your sphere to it instead of using pv.Sphere.plot() (which will create a pyvista.Plotter)?

from pyvistaqt.

MrCheatak avatar MrCheatak commented on July 20, 2024

I have managed to incorporate BackgroundPlotter like it is shown below.
Although, does it mean that the pyvista + Qt support is dropped?

  import sys
  import pyvista as pv
  import pyvistaqt as pvqt
  import numpy as np
  
  from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton
  
  
  class MainWindow(QMainWindow):
      def __init__(self):
          super().__init__()
  
          self.setWindowTitle("My App")
          self.button1 = QPushButton("Press Me!")
  
          # Set the central widget of the Window.
          self.setCentralWidget(self.button1)
  
          self.button1.clicked.connect(self.show_pvqt)
  
      def show_pvqt(self):
          plotter = self.plotter = pvqt.BackgroundPlotter()
          sphere = pv.Sphere()
  
          # Create a plotter window
          self.mesh = plotter.add_mesh(sphere, show_edges=True, name='sphere')
  
          # Customize the color map
          plotter.add_scalar_bar(title="Color Map")
          plotter.add_callback(self.change_color, 100)
  
          # Display the plotter window
          plotter.show()
          x = 0
          return 1
  
      def change_color(self):
          self.plotter.remove_actor('sphere')
          sphere = pv.Sphere()
          colors = np.random.rand(sphere.n_points, 3)
          self.mesh = self.plotter.add_mesh(sphere, scalars=colors, show_edges=True, name='sphere')
          self.plotter.update()
  
  
  app = QApplication(sys.argv)
  window = MainWindow()
  window.show()
  app.exec()

from pyvistaqt.

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.