phpOMS/Math/Geometry/Shape/D2/Ellipse.php
2022-11-09 22:55:39 +01:00

67 lines
1.3 KiB
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\Math\Geometry\Shape\D2
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
declare(strict_types=1);
namespace phpOMS\Math\Geometry\Shape\D2;
/**
* Ellipse shape.
*
* @package phpOMS\Math\Geometry\Shape\D2
* @license OMS License 1.0
* @link https://karaka.app
* @since 1.0.0
*/
final class Ellipse implements D2ShapeInterface
{
/**
* Area
*
* |
* b
* -------a-|----
* |
*
* @param float $a Axis
* @param float $b Axis
*
* @return float Distance between points in meter
*
* @since 1.0.0
*/
public static function getSurface(float $a, float $b) : float
{
return \M_PI * $a * $b;
}
/**
* Circumference
*
* |
* b
* -------a-|----
* |
*
* @param float $a Axis
* @param float $b Axis
*
* @return float Distance between points in meter
*
* @since 1.0.0
*/
public static function getPerimeter(float $a, float $b) : float
{
return \M_PI * ($a + $b) * (3 * ($a - $b) ** 2 / (($a + $b) ** 2 * (\sqrt(-3 * ($a - $b) ** 2 / (($a + $b) ** 2) + 4) + 10)) + 1);
}
}