1 | <?php |
||
9 | class TwoDimensionNonCurved |
||
10 | { |
||
11 | /** @var Set */ |
||
12 | private $lines; |
||
13 | |||
14 | /** @var Set */ |
||
15 | private $points; |
||
16 | |||
17 | /** @var Map */ |
||
18 | private $linesByPoint; |
||
19 | |||
20 | /** @var bool */ |
||
21 | private $closed; |
||
22 | |||
23 | public function __construct(Line ...$lines) |
||
56 | |||
57 | public function isClosed() |
||
61 | |||
62 | } |