| 1 | <?php |
||
| 7 | abstract class Point { |
||
| 8 | public static function create() |
||
| 25 | |||
| 26 | public static function AbstractPoint() |
||
| 30 | |||
| 31 | public static function Point1D($x) |
||
| 35 | |||
| 36 | public static function Point2D($x, $y) |
||
| 40 | |||
| 41 | public static function Point3D($x, $y, $z) |
||
| 45 | |||
| 46 | public static function Point4D($x, $y, $z, $t) |
||
| 50 | } |
||
| 51 |