public function Polygon::boundary in geoPHP 7
Overrides Collection::boundary
File
- geoPHP/
lib/ geometry/ Polygon.class.php, line 12
Class
- Polygon
- Polygon: A polygon is a plane figure that is bounded by a closed path, composed of a finite sequence of straight line segments
Code
public function boundary() {
return $this
->exteriorRing();
}