libigl icon indicating copy to clipboard operation
libigl copied to clipboard

Since version 2.6.0 Python bindings don't have fast_winding_number_for_meshes

Open mlamarre opened this issue 10 months ago • 1 comments

Describe the bug

In manylinux packages 2.6.0 and 2.6.1 deployed on PyPi fast_winding_number_for_meshes is gone from the igl namespace. Function is there in 2.5.1.

>>> import igl
>>> igl.fast_winding_number_for_meshes
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'igl' has no attribute 'fast_winding_number_for_meshes'`
``

#### Platform

- [ ] Windows
- [ ] macOS
- [x] Linux

mlamarre avatar Jun 05 '25 03:06 mlamarre

fast_winding_number

alecjacobson avatar Jun 05 '25 10:06 alecjacobson

should we use fast_winding_number instead of fast_winding_number_for_meshes?

msun170 avatar Jul 14 '25 13:07 msun170

Hello, I’m also facing the same issue in the igl Python bindings after moving from 25.1 to 26.1.

The current documentation still lists fast_winding_number_for_meshes, which is confusing, and fortunately I found this post.

Khoa-NT avatar Nov 11 '25 08:11 Khoa-NT