Marco Musy
Marco Musy
You can try with ```py 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)...
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: ```py from PySide6.QtWidgets import...
> 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! :)
It returns None because the plane is not hitting the mesh, this works: ```py from vedo import * msh = Mesh("sample.stl").alpha(0.1).wireframe() mslice = msh.slice(normal=[0,1,0], origin=[0,2,0]) mslice.c('purple5') show(msh, mslice, axes=1) ```...
Thanks @PinkMushroom feel free to make PR to fix the issue the way you think it's best!
Have you started the xvffb? https://vedo.embl.es/autodocs/content/vedo/vedo/settings.html#Settings.start_xvfb Also: https://vedo.embl.es/autodocs/content/vedo/vedo.html#running-in-a-docker-container
to be honest I'm not familiar enough with the xvbf machinery ... :(
Hi Johannes! sure i'm completely open to the idea. Note that in the master version I had already added annotations but I didn't of `from typing import Self`so feel free...
Fantastic. I will probably update what I did with the `Self` thing you mentioned which seems the right thing to do.. Yes I added you to Collaborators so you can...
Hi, i-m a bit hesitant on this because this is very widely used ... in principle it should not be a significant overhead to recover the point from the index...