Ilya Pyavkin

Results 1 issues of Ilya Pyavkin

https://github.com/sromku/polygon-contains-point/blob/e5717ff09c320c842f3a8a9ef62e52bafd61982c/src/main/java/com/snatik/polygon/Line.java#L34 Code inside `Line#isInside()` checks whether point contains inside line's bounding box, not laying on the line. Counter-example ``` line (0;0) - (10;10) points (0;10), (10;0) ``` line.containsPoint will return...