Exemplo n.º 1
0
 public boolean includes(GPXPoint p) {
   if (polygon == null) {
     computePolygon();
   }
   return polygon.contains(p.getLon(), p.getLat());
 }