issues Search Results · repo:dlegland/javaGeom language:Java
Filter by
13 results
(75 ms)13 results
indlegland/javaGeom (press backspace or delete to remove)It s very common for scala developers to use the scala.math package without the scala prefix as it s imported by
default. Naming your package math conflicts with this such that simply JavaGeom as a dependency ...
patrykcelinski
- 2
- Opened on Jun 9, 2020
- #16
I wanted to add this issue for others to lookup because it was so confounding -- our code was working fine and then we
did some refactoring and changed our coordinate system a little. Then SimplePolygon2D.contains ...
rrauenza
- 1
- Opened on Jan 13, 2020
- #15
Hello,
assume you have million of points and you would like to find the point closest to line, polygon ... It would be a lot
faster if you could just calculate the square distance. And find smallest square ...
ChristianLutz
- 3
- Opened on Dec 19, 2019
- #14
When I calculating the distance using Polyline2D.distance().
ArrayList Point2D listPoint= new ArrayList ();
listPoint.add(new Point2D(201093.16610711772, 1777477.3696508463)); // UTM Easting and Northing ...
vocedar
- 6
- Opened on Aug 7, 2019
- #13
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 ...
ben-horner
- 5
- Opened on Apr 7, 2019
- #11
The isInside and contains methods have the following test
if (area 0) {
return winding == 1;
} else {
return winding == 0;
}
I believe the code should be
if (area 0) {
return winding ...
dsmith82
- 1
- Opened on Dec 11, 2017
- #10
Hello, I would appreciate your help understanding the contains function in simplePolygon2D. The return statement check
if the area is larger than zero (according to your explanation checking if the polygon ...
smallwood-d
- 4
- Opened on Sep 18, 2017
- #9
Hello,
I stumbled over a problem regarding the contains method. Checking if a projection is part of a line (containsProjection)
returns true, but calling contains with the projected point on the line ...
ChristianLutz
- 2
- Opened on Jan 19, 2017
- #8
Hello,
the following test fails, because the LineSegment2D has been created with two identical points. In my opionen it is fine
to create a line segment with two identical points in contrast to a straight ...
ChristianLutz
- 2
- Opened on Oct 25, 2016
- #7

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.