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

69 lines
1.2 KiB
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\Math\Geometry\Shape\D3
* @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\D3;
/**
* Tetraedron shape.
*
* @package phpOMS\Math\Geometry\Shape\D3
* @license OMS License 1.0
* @link https://karaka.app
* @since 1.0.0
*/
final class Tetrahedron implements D3ShapeInterface
{
/**
* Volume
*
* @param float $a Edge
*
* @return float
*
* @since 1.0.0
*/
public static function getVolume(float $a) : float
{
return $a ** 3 / (6 * \sqrt(2));
}
/**
* Surface area
*
* @param float $a Edge
*
* @return float
*
* @since 1.0.0
*/
public static function getSurface(float $a) : float
{
return \sqrt(3) * $a ** 2;
}
/**
* Lateral surface area
*
* @param float $a Edge
*
* @return float
*
* @since 1.0.0
*/
public static function getFaceArea(float $a) : float
{
return \sqrt(3) / 4 * $a ** 2;
}
}