Lines Matching refs:geom
232 $geom = new GeometryCollection($geoms);
233 $centroid = $geom->centroid();
234 $bbox = $geom->getBBox();
655 * @param Geometry $geom
659 private function drawGeometry(Geometry $geom, int $colour): void argument
661 if (empty($geom)) {
665 switch ($geom->geometryType()) {
668 for ($i = 1; $i < $geom->numGeometries() + 1; $i++) {
669 $_geom = $geom->geometryN($i);
674 $this->drawPolygon($geom, $colour);
677 $this->drawLineString($geom, $colour);
680 $this->drawPoint($geom, $colour);