Home
last modified time | relevance | path

Searched refs:allowEmptyComponents (Results 1 – 6 of 6) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiSurface.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Surface::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DMultiCurve.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Curve::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DSurface.php19 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Curve::class) argument
21 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DCurve.php18 public function __construct($components = [], $allowEmptyComponents = false, $allowedComponentType = Point::class) argument
23 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DCollection.php26 * @param bool|true $allowEmptyComponents Allow creating geometries with empty components
33 $allowEmptyComponents = true, argument
42 if (!$allowEmptyComponents && $components[$i]->isEmpty()) {
H A DMultiGeometry.php15 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Geometry::class) argument
17 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);