예제 #1
0
파일: F64.cs 프로젝트: suzuke/FixPointCS
 public static F64 RcpFast(F64 a)
 {
     return(FromRaw(Fixed64.RcpFast(a.raw)));
 }
예제 #2
0
 public F64 Rcp()
 {
     return(FromRaw(Fixed64.RcpFast(raw)));
 }