Example #1
0
 public static F64Vec4 SinFastest(F64Vec4 a)
 {
     return(new F64Vec4(Fixed64.SinFastest(a.RawX), Fixed64.SinFastest(a.RawY), Fixed64.SinFastest(a.RawZ), Fixed64.SinFastest(a.RawW)));
 }
Example #2
0
 public static F64 SinFastest(F64 a)
 {
     return(FromRaw(Fixed64.SinFastest(a.Raw)));
 }
Example #3
0
 public static F64Vec3 SinFastest(F64Vec3 a)
 {
     return(new F64Vec3(Fixed64.SinFastest(a.RawX), Fixed64.SinFastest(a.RawY), Fixed64.SinFastest(a.RawZ)));
 }
Example #4
0
 public static F64Vec2 SinFastest(F64Vec2 a)
 {
     return(new F64Vec2(Fixed64.SinFastest(a.RawX), Fixed64.SinFastest(a.RawY)));
 }