Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
multipolygon.php
1<?php
2
4
6{
10 public function contains(BaseGeometry $geometry): bool
11 {
12 foreach ($this->components as $polygon)
13 {
14 if ($polygon->contains($geometry))
15 {
16 return true;
17 }
18 }
19
20 return false;
21 }
22}