Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 295 Bytes

function.HH.Lib.Math.tan.md

File metadata and controls

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

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

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