Marco Musy

Results 390 comments of Marco Musy

Hi, no, it cannot work that way! you need to specify a single texture map and provide uv-coordinates..

Thanks for spotting the problem... I'll fix it in the next release.

As the error message says you just need to install k3d ``` pip install k3d==2.7.4 ```

Hi, yes that could be a nice feature to add, meanwhile you can create a dummy Marker object e.g: ```python from vedo import * mesh = Mesh(dataurl + "bunny.obj") nv...

Hi, the boolean operations tend to work only if the original meshes are sufficiently hi-res in terms of triangles and faces. Check out this discussion: https://discourse.vtk.org/t/compute-the-volume-of-the-intersection-between-two-vtkpolydata-objects/8338/4

I think that if the faces are exactly in the same plane the algorithm does not work correctly... but it seems to do it right in other cases provided the...

Hi I just uploaded a patch in `pip`: ``` pip install pianoplayer -U ``` Caveat: the minimum nr of notes to process must be 9 (in the lower beam you...

Hi, from a quick look at the code It looks to me that the "cartoon" option of brainrender generates and adds to the scene a "silhouette" object. For some reason...

This minimal example actually works.. ```py from brainrender import Scene from vedo import settings settings.default_font = "Theemim" scene = Scene() brain = scene.plotter.objects[0] sil = brain.silhouette().c('blue5').lw(2) # scene.add_silhouette(sil) # not...