示例#1
0
文件: F32.cs 项目: jlauha/FixPointCS
 public static F32 Atan2Fastest(F32 y, F32 x)
 {
     return(FromRaw(Fixed32.Atan2Fastest(y.Raw, x.Raw)));
 }