-
-
Notifications
You must be signed in to change notification settings - Fork 549
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Convex Hull node #1673
Comments
@Kakapio creating a convex hull from points is reasonably well explored e.g. gift wrap algorithm. |
Sorry, I think my initial post was a little unclear. I was more asking if there was any specific functionality the team wanted? If not, I'll just go ahead and implement it. |
I would expect there to be a node with some vector data to be passed in containing some points and some vector data containing a region that is the convex hull to be output. |
This task is free. |
Hey @Keavon if this task is still free i'd like to try working on it ! |
@g-vitrac go for it! |
This node should convert vector shapes into convex hulls of their shapes, preserving their convex curves and bridging their concave parts with straight lines.
@Keavon Just wanted a run-down of how you want this to work. I'll be implementing a standard algorithm but wanted to ask if you had any specific functionality in mind.Edit:Information for whoever wants to tackle this task:
While there is plenty of literature about building the convex hull from polygons (polylines), there is much less on the internet about algorithms for doing that from bezier curves. You'll have to do some additional research to solve this, either through Googling for online resources or reading academic papers or thinking through a solution to the problem yourself as an extension of one of the polyline algorithms. The same algorithm needs to work for both shapes such as a hexagon and a circle.The text was updated successfully, but these errors were encountered: