コード例 #1
0
ファイル: F32.cs プロジェクト: jlauha/FixPointCS
 public static F32 Atan2Fastest(F32 y, F32 x)
 {
     return(FromRaw(Fixed32.Atan2Fastest(y.Raw, x.Raw)));
 }