Exemplo n.º 1
0
 public static Double Cos(ptsDegree deg)
 {
     return Math.Cos(deg.getAsRadians());
 }
Exemplo n.º 2
0
 public static Double Tan(ptsDegree deg)
 {
     return Math.Tan(deg.getAsRadians());
 }
Exemplo n.º 3
0
 public static ptsDegree Abs(ptsDegree deg)
 {
     return Math.Abs(deg.degrees_);
 }
Exemplo n.º 4
0
 public Azimuth(ptsDegree deg)
 {
     this.angle__ = Math.Atan2(ptsDegree.Sin(deg), ptsDegree.Cos(deg));
 }