libigl-python-bindings icon indicating copy to clipboard operation
libigl-python-bindings copied to clipboard

libigl python bindings

Results 85 libigl-python-bindings issues
Sort by recently updated
recently updated
newest added

Hello, thank you for sharing this library. I was wondering is there a function that calculates the minimum bounding box around a given set of vertices? The current bounding box...

It would be nice to expose this, as reusing the prefactored system is often very useful

enhancement

Hi all, I want to compute the gradient of data defined on an open surface mesh. However, during computation of the gradient with `igl.grad(v, f)` I get the error message...

I made this error when using IGl.BBW.This is the code I used b, bc = boundary_conditions(V, F, C, P, BE, CE) bbw = igl.BBW(0, 2) print(dir(igl.BBW)) print("show", V, V.shape,F.shape,b.shape, bc.shape)...

Hello, I'm trying to write a binding for one of the function that uses the embree intersector. I added the embree folder to both ./external and ./external/libigl/external. When I run...

I am trying to calculate the principal curvature of my mesh but I keep getting segmentation fault error in python. I have tried multiple different meshes but the same issue.

All the example data for Tutorial 3 is not in the repository https://github.com/libigl/libigl-python-bindings/blob/40be4c4fa5b8b77d37128b944883656d809d2444/tutorial/tut-chapter3.ipynb

Seems like pybind11 can directly interface to Eigen types. https://pybind11.readthedocs.io/en/stable/advanced/cast/eigen.html So is numpyeigen no longer necessary?

Hello, The ray_mesh_intersect function gives segmentation fault on every odd vertex, and an abnormally long list of hits for the others vertex that doesn't give seg fault. It would be...

**Is your feature request related to a problem? Please describe.** I have a mesh where there are many coplanar faces that are adjacent, and I need them removed from my...