Home
last modified time | relevance | path

Searched refs:isMeasured (Results 1 – 7 of 7) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DCollection.php51 if ($components[$i]->isMeasured() && !$this->isMeasured) {
52 $this->isMeasured = true;
82 public function isMeasured() function in geoPHP\\Geometry\\Collection
84 return $this->isMeasured;
322 if ($this->hasZ() || $this->isMeasured()) {
327 $this->isMeasured = false;
H A DPoint.php60 $this->isMeasured = true;
165 if (!$this->hasZ && !$this->isMeasured) {
168 if ($this->hasZ && $this->isMeasured) {
174 // if ($this->isMeasured)
247 $this->isMeasured = false;
344 return $this->isMeasured ? $this->m() : null;
349 return $this->isMeasured ? $this->m() : null;
H A DGeometry.php59 protected $isMeasured = false; variable in geoPHP\\Geometry\\Geometry
269 public function isMeasured() function in geoPHP\\Geometry\\Geometry
271 return $this->isMeasured;
387 return 2 + ($this->hasZ() ? 1 : 0) + ($this->isMeasured() ? 1 : 0);
H A DLineString.php383 if ($point->isMeasured() && $point->m() < $min) {
394 if ($point->isMeasured() && $point->m() > $max) {
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DWKT.php284 $this->measured = $geometry->isMeasured();
321 if ($geometry->isMeasured()) {
323 $this->measured = $this->measured || $geometry->isMeasured();
346 $this->measured = $this->measured || $geometry->isMeasured();
H A DTWKB.php366 $this->writeOptions['hasM'] = $geometry->isMeasured();
381 $metadataHeader += ($geometry->hasZ() || $geometry->isMeasured()) << 3;
428 if ($geometry->isMeasured()) {
437 if ($geometry->hasZ() || $geometry->isMeasured()) {
442 if ($geometry->isMeasured()) {
443 $extendedPrecision |= ($geometry->isMeasured() ? 0x2 : 0) | ($this->writeOptions['decimalDigitsM'] << 5);
H A DWKB.php290 $this->hasM = $geometry->isMeasured();