1 | <?php |
||
7 | class Creator { |
||
8 | private $points = array(); |
||
9 | |||
10 | public function addPoint($label = null) |
||
18 | |||
19 | public function dumpPoints() |
||
27 | |||
28 | public function getPoint($index) |
||
36 | |||
37 | public function getPointIndex(Point $point) |
||
41 | |||
42 | public function getPointOrFail($index) |
||
50 | |||
51 | public function searchPoint(Point $point) |
||
55 | } |
||
56 |