예제 #1
0
파일: F32.cs 프로젝트: jlauha/FixPointCS
 public static F32 Atan2Fastest(F32 y, F32 x)
 {
     return(FromRaw(Fixed32.Atan2Fastest(y.Raw, x.Raw)));
 }