BolterLibrary.Navigation.DegreesToPosH C# (CSharp) 메소드

DegreesToPosH() 보호된 메소드

protected DegreesToPosH ( double Degrees ) : float
Degrees double
리턴 float
        protected float DegreesToPosH(double Degrees)
        {
            return (MathMod((int)(((Degrees + 90) * _pi) / 180.0), (int)(2 * _pi)) - _pi);
        }