Ejemplo n.º 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)));
 }
Ejemplo n.º 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)));
 }
Ejemplo n.º 3
0
 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)));
 }
Ejemplo n.º 4
0
 public static F64 operator /(int v1, F64 v2)
 {
     return(FromRaw(Fixed64.DivPrecise(Fixed64.FromInt(v1), v2.Raw)));
 }
Ejemplo n.º 5
0
 public static F64 operator /(F64 v1, F64 v2)
 {
     return(FromRaw(Fixed64.DivPrecise(v1.Raw, v2.Raw)));
 }
Ejemplo n.º 6
0
 public static F64Vec2 operator /(F64 a, F64Vec2 b)
 {
     return(new F64Vec2(Fixed64.DivPrecise(a.Raw, b.RawX), Fixed64.DivPrecise(a.Raw, b.RawY)));
 }
Ejemplo n.º 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)); }