MultiLineString.class.php in geoPHP 7
Same filename and directory in other branches
File
geoPHP/lib/geometry/MultiLineString.class.phpView source
<?php
/**
* MultiLineString: A collection of LineStrings
*/
class MultiLineString extends Collection {
protected $geom_type = 'MultiLineString';
// MultiLineString is closed if all it's components are closed
public function isClosed() {
foreach ($this->components as $line) {
if (!$line
->isClosed()) {
return FALSE;
}
}
return TRUE;
}
}
Classes
Name | Description |
---|---|
MultiLineString | MultiLineString: A collection of LineStrings |