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);
namespace phpOMS\Math\Shape\D2;
namespace phpOMS\Math\Geometry\Shape\D2;
/**
* Circle shape.

View File

@ -13,9 +13,9 @@
*/
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.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -13,9 +13,9 @@
*/
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.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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