clipper-java
clipper-java copied to clipboard
A Polygon clipper for Java
Fixed to match original C# code (lines 1561-), fixes clipping of open polylines: ``` foreach (OutRec outRec in m_PolyOuts) { if (outRec.Pts == null) continue; else if (outRec.IsOpen) FixupOutPolyline(outRec); else...
This repository seems unmaintained/dead since 2017. I've created a fork and will maintain the fork. If you have Issues you'd like fixed or PRs you'd like merged, feel free to...
ClipperOffset.java---60 //need use equals for reference types while (highI > 0 && path.get( 0 ).equals(path.get( highI ))) {
Hi, Can you please add an example codes how to use your work. I have tried to use it but not succeed. Thank you.
I noticed that this java port behaved different than the C# version for my usecase. When comparing the C# sources to this, I noticed that there seems to be a...
Not a big deal but it prevents compilation on Linux or OSX after a git clone of the repo. It can be fixed with iconv command though.
The statement in DefaultClipper.java: LOGGER.finest( ToFront + " " + pt + " " + op.getPt() ); can takes 30% of the execution time, even with logging disabled, as it's...
As this image shows:  But most of the time it works ok, as in this other:  Any clue? I understand that random cases might not the be best...