Giter Club home page Giter Club logo

Comments (8)

marcomusy avatar marcomusy commented on May 27, 2024 2

LOL ..no, that's because of a vtk call trying to get the physical size of your screen (which in your case does not exist since it on a server)..

It will be fixed in the next release, thanks for spotting the problem!
M.

from vedo.

marcomusy avatar marcomusy commented on May 27, 2024

What is the output of:

# before importing anything

print(get_ipython())

from vtkplotter import settings

print(settings.notebookBackend)
print(settings.notebook_plotter)

from vedo.

vianamp avatar vianamp commented on May 27, 2024

I got this

<ipykernel.zmqshell.ZMQInteractiveShell object at 0x7ff9fa85f8d0>
k3d
None

from vedo.

marcomusy avatar marcomusy commented on May 27, 2024

..looks normal.. ..so this is already crashing?

from vtkplotter import settings, Plotter

vp = Plotter()

from vedo.

vianamp avatar vianamp commented on May 27, 2024

Yes, it crashes.

Could it be a Chrome-related problem?

from vedo.

marcomusy avatar marcomusy commented on May 27, 2024

might be.. what if you run this instead:

import k3d

vertices = [
    -10, 0, -1,
    10, 0, -1,
    10, 0, 1,
    -10, 0, 1,
]

indices = [
    0, 1, 3,
    1, 2, 3
]

plot = k3d.plot()
plot += k3d.mesh(vertices, indices)
plot.display()

PS
you can also try if it crashes with:

vp = Plotter(screensize=(500,500))

from vedo.

vianamp avatar vianamp commented on May 27, 2024

Both codes worked!

Just by specifying screensize fixed my code. Any idea why is that?

from vedo.

vianamp avatar vianamp commented on May 27, 2024

Are you saying my 13inch screen isn't too big for the default screensize? :)

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.