ToDegrees() public static method

public static ToDegrees ( double radians ) : double
radians double
return double
Exemplo n.º 1
0
 public string ToStringLongitude()
 {
     return(String.Format("Range[{0}, {1}]", MathHelper.ToDegrees(MathHelper.MonotonicAcos(Min)), MathHelper.ToDegrees(MathHelper.MonotonicAcos(Max))));
 }
Exemplo n.º 2
0
 public string ToStringAcos()
 {
     return(String.Format("Range[{0}, {1}]", MathHelper.ToDegrees(Math.Acos(Min)), MathHelper.ToDegrees(Math.Acos(Max))));
 }
Exemplo n.º 3
0
 public string ToStringAcos() =>
 $"Range[{MathHelper.ToDegrees(Math.Acos((double) this.Min))}, {MathHelper.ToDegrees(Math.Acos((double) this.Max))}]";
Exemplo n.º 4
0
 public string ToStringLongitude() =>
 $"Range[{MathHelper.ToDegrees(MathHelper.MonotonicAcos(this.Min))}, {MathHelper.ToDegrees(MathHelper.MonotonicAcos(this.Max))}]";
 public string ToStringAsin()
 {
     return(string.Format("Range[{0}, {1}]", MathHelper.ToDegrees(Math.Asin((double)this.Min)), MathHelper.ToDegrees(Math.Asin((double)this.Max))));
 }