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