public function Geometry::intersects in geoPHP 7
Same name and namespace in other branches
- 8 geoPHP/lib/geometry/Geometry.class.php \Geometry::intersects()
File
- geoPHP/
lib/ geometry/ Geometry.class.php, line 255
Class
- Geometry
- Geometry abstract class
Code
public function intersects(Geometry $geometry) {
if ($this
->geos()) {
return $this
->geos()
->intersects($geometry
->geos());
}
}