gpt4 book ai didi

c++ - 使用 Clipper 库 (c++) 进行线和多边形裁剪返回空路径

转载 作者:行者123 更新时间:2023-11-30 01:41:06 26 4
gpt4 key购买 nike

我正在尝试使用 Clipper 库按线分割多边形。执行裁剪后,返回空路径。有人可以建议正确的方法来做同样的事情吗?


Paths clip(2),soln;
clip[0] << IntPoint(-264,-210) << IntPoint(650,-209);
Path sub = clip[0];
Path poly << IntPoint(531,49) << IntPoint(-21,49) << IntPoint(-970,-961) << IntPoint(-945,-1019) << IntPoint(1045,-1071) ;
Clipper c;
c.AddPath(poly,ptSubject,true);
c.AddPath(sub,ptClip,true);
c.Execute(ctIntersection,soln,pftNonZero, pftNonZero);
std::cout << soln.size() << "soln size";

溶液大小为零。

最佳答案

Clipper 不允许直线(开放路径)剪裁多边形(闭合路径)。然而,它确实允许线条被多边形剪切。 (More info here.)

此外,在您的代码中,两个路径(主题和剪辑)似乎都被添加为闭合路径,并且由于主题没有区域,因此它与剪辑多边形的交集也将没有区域,因此是空的解决方案.

关于c++ - 使用 Clipper 库 (c++) 进行线和多边形裁剪返回空路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41999919/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com