We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To get the results as a tree, then PolyNode and PolyTree should be public.
When I did this, there were some NullPointerExceptions thrown from DefaultClipper. I've change some lines to prevent this:
In buildResult2:
buildResult2
final int cnt = (outRec.getPoints() == null) ? 0 : outRec.getPoints().getPointCount();
In fixupFirstLefts2:
fixupFirstLefts2
if(outRec == null || outRec.firstLeft == null) continue;
In joinCommonEdges:
joinCommonEdges
if (oRec.getPoints() == null || oRec.firstLeft == null || oRec.firstLeft.parseFirstLeft() != outRec1 || oRec.isHole == outRec1.isHole) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To get the results as a tree, then PolyNode and PolyTree should be public.
When I did this, there were some NullPointerExceptions thrown from DefaultClipper. I've change some lines to prevent this:
In
buildResult2
:In
fixupFirstLefts2
:In
joinCommonEdges
:The text was updated successfully, but these errors were encountered: