Replies: 1 comment
-
|
I used the wrong interface. This can be used bool Execute(ClipType clip_type, FillRule fill_rule, Paths64& closed_paths, Paths64& open_paths) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi@AngusJohnson,This is my test code, closed path, collinearity is not generated
Clipper2Lib::Paths64 buildRectShellPath(const Clipper2Lib::Rect64& rect, int64_t offset)
{
int64_t left = rect.left;
int64_t right = rect.right;
int64_t top = rect.top;
int64_t bottom = rect.bottom;
}
void test()
{
Clipper2Lib::Rect64 rect;
rect.left = -200;
rect.right = 200;
rect.top = -150;
rect.bottom = 150;
rect.Scale(1000);
}
Beta Was this translation helpful? Give feedback.
All reactions