Home
last modified time | relevance | path

Searched refs:pointOnVertex (Results 1 – 1 of 1) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DPolygon.php255 * @param boolean $pointOnVertex - whether a vertex should be considered "in" or not
258 public function pointInPolygon($point, $pointOnBoundary = true, $pointOnVertex = true) argument
263 if ($this->pointOnVertex($point, $vertices)) {
264 return $pointOnVertex ? true : false;
313 public function pointOnVertex($point) function in geoPHP\\Geometry\\Polygon