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
How to get hull's halfedges ? Is there anything to get them directly or must I check all edges around hull's points ?
I need this to close the triangulation on a sphere. The last triangles are made with a pole in sterographic projection connected to each hull's edge. This pole/point is removed before running delaunator then added after and so all new triangles with this new point.
hull give points but hulltri, hullhash, hullnext and hullprev are not related to hull's actual edges.
The text was updated successfully, but these errors were encountered:
All the halfedges that don't have an opposite are on the hull. That doesn't put them in order. But if you find any one of these halfedges without an opposite, A→B, then there should be only one halfedge B→ that doesn't have an opposite, and that will be the next one in the hull. You can keep following the chain until you get back to A, I think.
How to get hull's halfedges ? Is there anything to get them directly or must I check all edges around hull's points ?
I need this to close the triangulation on a sphere. The last triangles are made with a pole in sterographic projection connected to each hull's edge. This pole/point is removed before running delaunator then added after and so all new triangles with this new point.
hull give points but hulltri, hullhash, hullnext and hullprev are not related to hull's actual edges.
The text was updated successfully, but these errors were encountered: