You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems this issue is due to the first 4 vertices of the input are coplanar. The incremental convex hall algorithm requires a non-coplanar tetrahedron initialization. I simply choose the first 4 vertices in the input model for initialization (see here). To bypass this issue, I suggest to shuffle the input vertices to make the first 4 vertices non-coplanar.
It looks in function _incremental of file https://github.com/yuehaowang/convex_hull_3d/blob/master/convex_hull.py, there is a bug around
is_visible = vol < 0
??The text was updated successfully, but these errors were encountered: