| 1 | <?php |
||
| 4 | class Point |
||
| 5 | { |
||
| 6 | private $id; |
||
| 7 | private $distances = array(); |
||
| 8 | private $label = null; |
||
| 9 | |||
| 10 | public function __construct($point_id, $label = null) |
||
| 19 | |||
| 20 | public static function create($point_id, $label = null) |
||
| 24 | |||
| 25 | public static function checkPoint($point) |
||
| 33 | |||
| 34 | public static function validate($point) |
||
| 44 | |||
| 45 | public function addRelation($point, $distance) |
||
| 53 | |||
| 54 | public function getDinstances() |
||
| 64 | |||
| 65 | public function distanceTo($point) |
||
| 75 | |||
| 76 | public function getID() |
||
| 80 | |||
| 81 | public function getLabel() |
||
| 85 | } |
||
| 86 |