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