ArcMapAddinDistanceAndDirection.ViewModels.LinesViewModel.GetAzimuthAsDegrees C# (CSharp) 메소드

GetAzimuthAsDegrees() 개인적인 메소드

private GetAzimuthAsDegrees ( ) : double
리턴 double
        private double GetAzimuthAsDegrees()
        {
            if(LineAzimuthType == AzimuthTypes.Mils)
            {
                return Azimuth.GetValueOrDefault() * 0.05625;
            }

            return Azimuth.GetValueOrDefault();
        }