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