标签: algorithm svg
我想提取A和B圆圈(或其他路径/形状)的外部路径(红线),并擦除所有内部线条,因此只有一条路径(可能只是一点点)一个复杂的)。有没有算法可以轻松做到这一点?
答案 0 :(得分:6)
您要查找的字词为bezier path boolean operations,特别是union,用于您所呈现的案例(这可以帮助您进行Google搜索)。
bezier path boolean operations
union
Paper.js有javascript implementation:
你可以see the examples here。