Uses of Class
org.apache.lucene.geo.Tessellator.Triangle
Packages that use Tessellator.Triangle
-
Uses of Tessellator.Triangle in org.apache.lucene.geo
Methods in org.apache.lucene.geo that return types with arguments of type Tessellator.TriangleModifier and TypeMethodDescriptionstatic List
<Tessellator.Triangle> Tessellator.tessellate
(Polygon polygon, boolean checkSelfIntersections) static List
<Tessellator.Triangle> Tessellator.tessellate
(Polygon polygon, boolean checkSelfIntersections, Tessellator.Monitor monitor) static List
<Tessellator.Triangle> Tessellator.tessellate
(XYPolygon polygon, boolean checkSelfIntersections) static List
<Tessellator.Triangle> Tessellator.tessellate
(XYPolygon polygon, boolean checkSelfIntersections, Tessellator.Monitor monitor) Method parameters in org.apache.lucene.geo with type arguments of type Tessellator.TriangleModifier and TypeMethodDescriptionstatic final boolean
Tessellator.pointInPolygon
(List<Tessellator.Triangle> tessellation, double lat, double lon) Brute force compute if a point is in the polygon by traversing entire triangulation todo: speed this up using either binary tree or prefix coding (filtering by bounding box of triangle)