mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-09 21:48:41 +00:00
fixes #30
This commit is contained in:
parent
b93f249aa8
commit
02bf21400f
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user