Horizon touch point #587
Replies: 3 comments
-
|
Beta Was this translation helpful? Give feedback.
-
|
Yes,it's difficult to get their simplest forms.Do you plan to optimizing touch solutions to get their simplest forms in the future, or temporarily not optimizing it for efficiency reasons. Thank you, Angus Johnson. |
Beta Was this translation helpful? Give feedback.
-
No. Sorry. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
input polygon ABCDEBFG

make union operation
the result also ABCDEBFG, how to get two detached polygons ABFG and BCDE
void test() { Paths64 subj = { MakePath({2, 0, 2, 2, 0, 2, 0, 4, 2, 4, 2, 2, 4, 2, 4, 0 }) }; Paths64 sol = Union(subj, {}, FillRule::NonZero); std::cout << sol << std::endl;// 4, 0, 4, 2, 2, 2, 2, 4, 0, 4, 0, 2, 2, 2, 2, 0 }Beta Was this translation helpful? Give feedback.
All reactions