GraphiteEditor/Graphite

Convex Hull node

Open

#1,673 创建于 2024年3月11日

在 GitHub 查看
 (9 评论) (0 反应) (0 负责人)Rust (1,176 fork)batch import
Good First Issue

仓库指标

Star
 (25,662 star)
PR 合并指标
 (平均合并 6天 9小时) (30 天内合并 65 个 PR)

描述

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.

贡献者指南