Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 292 Bytes

function.HH.Lib.Math.sin.md

File metadata and controls

12 lines (10 loc) · 292 Bytes
$rotation = 0;
$result = Math\sin($rotation);
echo "Math\sin of $rotation : $result \n";

$rotation = 90;
$result = Math\sin($rotation);
echo "Math\sin of $rotation : $result \n";

$rotation = 180;
$result = Math\sin($rotation);
echo "Math\sin of $rotation : $result \n";