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

Can I manually install libigl and numpyeigen independently before this libigl-python-binding? It looks **libigl-python-bindings** download two **external** packages - libigl - numpyeigen automatically, from within **CMakeLists.txt** I can tell. However,...

I am use `topological_hole_fill ` ,and I see blow in Docs. So I wander how can i calculate the `new abstract vertices `. If there is any example, I would...

I'm trying to learn [how to write a new python binding](https://github.com/libigl/libigl-python-bindings/discussions/104). As a first step, I tried to build the bindings locally. When I clone this repository and issue as...

Failed to build **libigl-python-bindings** with **ERROR message**: `error: lvalue required as left operand of assignment` . ```console [ 1%] Built target predicates In file included from ....../libigl-python-bindings/external/numpyeigen/src/npe_typedefs.h:6, from ....../libigl-python-bindings/external/numpyeigen/src/npe_typedefs.cpp:1: ....../libigl-python-bindings/external/numpyeigen/cmake/../src/npe_sparse_array.h:...

Hi, I am trying to calculate the `unsigned distance field` of an **open mesh** using: ``` signed_distance, new_faces, new_verts = igl.signed_distance(samples, mesh.vertices, mesh.faces, return_normals=False) unsigned_distance = signed_distance**2 ``` But the...

Saw some months back that marching cubes had been moved out of copyleft, is there an estimate when it will be available in the py bindings?

When I run igl.cotmatrix(V, F), it only shows this error message "igl.cotmatrix(V, F) causes process finished with exit code 139 (interrupted by signal 11: SIGSEGV)" without any other information. Has...

This repository installs fine on my mac via pip: pip3 install 'git+https://github.com/libigl/libigl-python-bindings/#egg=pyigl' Can you please add it to PyPI and also make binary wheels available? It took a long time...

Hi! I'm begining to learn this package following your tutorial, but I'm finding it hard to start. The following simple code is raising errors import igl import scipy as sp...

Hi, I just spent a full morning to find out that the function point_in_poly() requires unsigned values as input. I might learn a bit about GitHub and suggest additions to...