Marco Musy

Results 216 comments of Marco Musy

what you can do is to generate html code to be embedded into web apps. Examples are: https://vedo.embl.es/examples/geo_scene.html https://fedeclaudi.github.io/br-mouse.html The above are using `k3d` for the actual renderings. Exporting to...

how big is your data file on disk, before exporting?

that's because there are too many vertices: ` nr. of actors: 4 (829711 vertices)` you can try removing the arrows and decimate the lines with: `stream.clean(0.005) # impose a min...

Use offscreen keyword: ```python from vedo import * pan = load(datadir+'panther.stl') show(pan, offscreen=True) exportWindow('panther.html') ```

> AttributeError: 'NoneType' object has no attribute 'SetInteractorStyle' Uhm are you running it from terminal or in a jupyter/ipython session? > If I have a one stream, every thing is...

Thanks Ru for the detailed description of the issue, if I understand there should be no difference between `w.sub(0)` and `u_mid` (correct?), so the `vedo` parsing must be missing the...

Hi, at the moment it is not implemented for vector fields, but maybe this can useful #133

Try: ```python from vedo import * import numpy as np mask = np.zeros([300, 200, 50]) mask[:, :, 10:30] = 1 p1 = [-100, 100, -100] p2 = [100, 100, 200]...

PS: sorry I probably misunderstood.. if you want the boundary hits, where the line hits non-zero voxels you might use ``` vbox = vol.isosurface(1) # or vbox = vol.legosurface(0.9,1.1) ```

I have no experience with kaggle. I need to investigate what is possible there.