javaGeom
javaGeom copied to clipboard
Geometry library for Java
Can you please publish 0.11.3 to maven central?
The `isInside `and `contains `methods have the following test ``` if (area > 0) { return winding == 1; } else { return winding == 0; } ``` I believe...
For some reason the implementation of Line2D.intersection(Line2D) is using a LineSegment2D here: https://github.com/dlegland/javaGeom/blob/master/src/main/java/math/geom2d/line/Line2D.java#L345 Then when the AbstractLine2D.instersect method takes over, it correctly finds the intersection, but then it checks LineSegment2D.contains(),...