clipper-java icon indicating copy to clipboard operation
clipper-java copied to clipboard

A Polygon clipper for Java

Results 14 clipper-java issues
Sort by recently updated
recently updated
newest added

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: ![image](https://user-images.githubusercontent.com/466120/27013644-e2c49896-4ee7-11e7-9524-6b3f20e3e1e8.png) But most of the time it works ok, as in this other: ![image](https://user-images.githubusercontent.com/466120/27013653-229f330e-4ee8-11e7-8367-076c9b7e3a5f.png) Any clue? I understand that random cases might not the be best...