index.php 398 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: root
  5. * Date: 22.07.18
  6. * Time: 17:08
  7. */
  8. require_once('lib/Round.php');
  9. require_once('lib/Point.php');
  10. require_once('lib/Rectangle.php');
  11. require_once('lib/Square.php');
  12. require_once('lib/Segment.php');
  13. require_once('lib/BrokenLine.php');
  14. require_once('lib/Polygon.php');
  15. $obj = new Round([[2, 2], [2, 3], [6, 3], [8, 3], [2, 2]], 3 );
  16. var_dump($obj);