nknize commented on a change in pull request #771: LUCENE-8620: Update
Tessellator logic to label if triangle edges belongs to the original polygon
URL: https://github.com/apache/lucene-solr/pull/771#discussion_r321719110
##########
File path: lucene/sandbox/src/java/org/apache/lucene/geo/Tessellator.java
##########
@@ -920,6 +1055,8 @@ public static final boolean pointInPolygon(final
List<Triangle> tessellation, do
private Node previousZ;
// next z node
private Node nextZ;
+ // if the edge from this node to the next node is part of the polygon edges
+ private boolean nextEdgeFromPolygon;
Review comment:
```suggestion
private boolean isNextEdgeFromPolygon;
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]