Code Monkey home page Code Monkey logo

Comments (5)

marcomusy avatar marcomusy commented on August 16, 2024

@calugo
Hi Carlos! Thanks a lot for your interest and this great feedback!!
To be perfectly honest I'm not expert of jupiter (shame on me..) but you are absolutely right: this not handled properly, if someone wants to type-in commands in a python or jupiter session.
I could easily add a small function that closes the window.
Meanwhile this should work (python3):

import dolfin
from vtkplotter.dolfin import datadir, plot, Plotter

def closeWindow(pme=None):
	if not pme:
		from vtkplotter.settings import plotter_instance
		pme  = plotter_instance
		if not pme:
			return
	pme.window.Finalize()
	pme.interactor.TerminateApp()
	del pme.window
	del pme.interactor
	return pme

mesh = dolfin.Mesh(datadir+"dolfin_fine.xml")

pme = plot(mesh)
 
# now I press 'q' to exit the window interaction, 
# windows stays open but not reactive anymore

input('Control returns to terminal shell (press Enter)')

closeWindow()

# window should now close, the Plotter instance becomes invalid
# but mesh object still exist in it:

print(pme)
#pme.show() #this would cause error

# can create a brand new Plotter and show the old object
pme2 = Plotter(title='Second Plotter instance')
pme2.show(pme.actors[0].color('green'))

On the other hand one can go back to interaction by simply call

#.... non interactive script
plot()

Let me know if this works for you!
Cheers
Marco

from vedo.

calugo avatar calugo commented on August 16, 2024

Hi!
Thanks for the reply! This solutions works like a charm.
Carlos.

from vedo.

marcomusy avatar marcomusy commented on August 16, 2024

@calugo
fantastic, I will add the new function in the next release.
I'm also thinking of adding the method interactive() to go back to the rendering window, which would be equivalent to plot() with no arguments... maybe that's more intuitive... (?)
M.

from vedo.

calugo avatar calugo commented on August 16, 2024

Hi, well i think that this would be useful as often one likes to work along the image.

I think you commited the above function? Thanks a lot.

from vedo.

marcomusy avatar marcomusy commented on August 16, 2024

yes - it should be already available in the release,
cheers
marco

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.