mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
fixes #30
This commit is contained in:
parent
b93f249aa8
commit
02bf21400f
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Circle shape.
|
||||
|
|
@ -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.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Ellipse shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Polygon class.
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Rectangle shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Trapezoid shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D2;
|
||||
namespace phpOMS\Math\Geometry\Shape\D2;
|
||||
|
||||
/**
|
||||
* Triangle shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D3;
|
||||
namespace phpOMS\Math\Geometry\Shape\D3;
|
||||
|
||||
/**
|
||||
* Cone shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D3;
|
||||
namespace phpOMS\Math\Geometry\Shape\D3;
|
||||
|
||||
/**
|
||||
* Cuboid shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D3;
|
||||
namespace phpOMS\Math\Geometry\Shape\D3;
|
||||
|
||||
/**
|
||||
* Cylinder shape.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D3;
|
||||
namespace phpOMS\Math\Geometry\Shape\D3;
|
||||
|
||||
/**
|
||||
* Rectangular pyramid shape.
|
||||
|
|
@ -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
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape\D3;
|
||||
namespace phpOMS\Math\Geometry\Shape\D3;
|
||||
|
||||
/**
|
||||
* Tetraedron shape.
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace phpOMS\Math\Shape;
|
||||
namespace phpOMS\Math\Geometry\Shape;
|
||||
|
||||
/**
|
||||
* Shape interface.
|
||||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user