Beispiel #1
0
 public static F64Vec4 operator /(F64 a, F64Vec4 b)
 {
     return(new F64Vec4(Fixed64.DivPrecise(a.Raw, b.RawX), Fixed64.DivPrecise(a.Raw, b.RawY), Fixed64.DivPrecise(a.Raw, b.RawZ), Fixed64.DivPrecise(a.Raw, b.RawW)));
 }
Beispiel #2
0
 public static F64Vec4 operator /(F64Vec4 a, F64 b)
 {
     return(new F64Vec4(Fixed64.DivPrecise(a.RawX, b.Raw), Fixed64.DivPrecise(a.RawY, b.Raw), Fixed64.DivPrecise(a.RawZ, b.Raw), Fixed64.DivPrecise(a.RawW, b.Raw)));
 }
 public static F64Vec3 operator /(F64Vec3 a, F64Vec3 b)
 {
     return(new F64Vec3(Fixed64.DivPrecise(a.RawX, b.RawX), Fixed64.DivPrecise(a.RawY, b.RawY), Fixed64.DivPrecise(a.RawZ, b.RawZ)));
 }
Beispiel #4
0
 public static F64 operator /(int v1, F64 v2)
 {
     return(FromRaw(Fixed64.DivPrecise(Fixed64.FromInt(v1), v2.Raw)));
 }
Beispiel #5
0
 public static F64 operator /(F64 v1, F64 v2)
 {
     return(FromRaw(Fixed64.DivPrecise(v1.Raw, v2.Raw)));
 }
 public static F64Vec2 operator /(F64 a, F64Vec2 b)
 {
     return(new F64Vec2(Fixed64.DivPrecise(a.Raw, b.RawX), Fixed64.DivPrecise(a.Raw, b.RawY)));
 }
Beispiel #7
0
 public static F64Vec2 operator /(F64Vec2 a, F64 b) { return new F64Vec2(Fixed64.DivPrecise(a.RawX, b.Raw), Fixed64.DivPrecise(a.RawY, b.Raw)); }