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