コード例 #1
0
ファイル: F64.cs プロジェクト: suzuke/FixPointCS
 public static F64 DivFast(F64 a, F64 b)
 {
     return(FromRaw(Fixed64.DivFast(a.raw, b.raw)));
 }