phpOMS/Math/Geometry/Shape/D2/D2ShapeInterface.php
2024-03-20 07:21:26 +00:00

30 lines
526 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package phpOMS\Math\Geometry\Shape\D2
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Math\Geometry\Shape\D2;
use phpOMS\Math\Geometry\Shape\ShapeInterface;
/**
* Shape interface.
*
* @package phpOMS\Math\Geometry\Shape\D2
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
interface D2ShapeInterface extends ShapeInterface
{
}