Example #1
0
 /// <summary>
 /// Returns the arc tan of value.
 /// </summary>
 public static Fixed64 Atan(Fixed64 value)
 {
     return(Fixed64.Atan(value));
 }
Example #2
0
 public static F64 Atan(F64 a)
 {
     return(FromRaw(Fixed64.Atan(a.Raw)));
 }