Functions/Convert-AllegisDegreesToRadians.ps1

function Convert-AllegisDegreesToRadians($degrees) {
 return $degrees * [math]::pi / 180;
}