1 | <?php |
||
9 | class Line |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var ImmutableNumber |
||
14 | */ |
||
15 | private $length; |
||
16 | |||
17 | /** |
||
18 | * @var Set |
||
19 | */ |
||
20 | private $points; |
||
21 | |||
22 | public function __construct(CartesianCoordinate $coordinate1, CartesianCoordinate $coordinate2) |
||
29 | |||
30 | public function length() |
||
34 | |||
35 | public function points() |
||
39 | |||
40 | public function pointsIterator() |
||
44 | |||
45 | } |