Skip to content

Instantly share code, notes, and snippets.

View supercrafter333's full-sized avatar
🇺🇦
#PrayForUkraine #StayWithUkraine

Christoph R. supercrafter333

🇺🇦
#PrayForUkraine #StayWithUkraine
View GitHub Profile
@supercrafter333
supercrafter333 / TrigonometryHelper.php
Last active January 13, 2024 20:19
simple trigonometry calculate methods in PHP
<?php
final class TrigonometryHelper
{
public static function sinAngle(int|float $sideLengthOpp, int|float $sideLengthHyp): int|float
{
return rad2deg(asin($sideLengthOpp / $sideLengthHyp));
}