This commit is contained in:
Dennis Eichhorn 2017-09-08 20:13:09 +02:00
parent b93f249aa8
commit 02bf21400f
18 changed files with 21 additions and 21 deletions

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Circle shape. * Circle shape.

View File

@ -13,9 +13,9 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
use phpOMS\Math\Shape\ShapeInterface; use phpOMS\Math\Geometry\Shape\ShapeInterface;
/** /**
* Shape interface. * Shape interface.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Ellipse shape. * Ellipse shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Polygon class. * Polygon class.

View File

@ -12,7 +12,7 @@
* @link http://orange-management.com * @link http://orange-management.com
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
class Quadrilateral implements D2ShapeInterface class Quadrilateral implements D2ShapeInterface
{ {

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Rectangle shape. * Rectangle shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Trapezoid shape. * Trapezoid shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D2; namespace phpOMS\Math\Geometry\Shape\D2;
/** /**
* Triangle shape. * Triangle shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Cone shape. * Cone shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Cuboid shape. * Cuboid shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Cylinder shape. * Cylinder shape.

View File

@ -13,9 +13,9 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
use phpOMS\Math\Shape\ShapeInterface; use phpOMS\Math\Geometry\Shape\ShapeInterface;
/** /**
* Shape interface. * Shape interface.

View File

@ -12,7 +12,7 @@
* @link http://orange-management.com * @link http://orange-management.com
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
class Prism implements D3ShapeInterface class Prism implements D3ShapeInterface
{ {

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Rectangular pyramid shape. * Rectangular pyramid shape.

View File

@ -13,13 +13,13 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Sphere shape. * Sphere shape.
* *
* @category Framework * @category Framework
* @package phpOMS\Math\Shape * @package phpOMS\Math\Geometry\Shape
* @license OMS License 1.0 * @license OMS License 1.0
* @link http://orange-management.com * @link http://orange-management.com
* @since 1.0.0 * @since 1.0.0

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape\D3; namespace phpOMS\Math\Geometry\Shape\D3;
/** /**
* Tetraedron shape. * Tetraedron shape.

View File

@ -13,7 +13,7 @@
*/ */
declare(strict_types=1); declare(strict_types=1);
namespace phpOMS\Math\Shape; namespace phpOMS\Math\Geometry\Shape;
/** /**
* Shape interface. * Shape interface.

View File

@ -15,7 +15,7 @@ declare(strict_types=1);
namespace phpOMS\Math\Optimization\TSP; namespace phpOMS\Math\Optimization\TSP;
use phpOMS\Math\Shape\D3\Sphere; use phpOMS\Math\Geometry\Shape\D3\Sphere;
/** /**
* City class. * City class.