Example #1
0
 public static F64 Length(F64Vec2 a)
 {
     return((a.x * a.x + a.y * a.y).SqrtFast());
 }
Example #2
0
 public static F64Vec2 Lerp(F64Vec2 a, F64Vec2 b, F64 t)
 {
     return(a + t * (b - a));
 }
Example #3
0
 public static F64Vec2 Pow(F64Vec2 a, F64Vec2 b)
 {
     return(new F64Vec2(F64.Pow(a.x, b.x), F64.Pow(a.y, b.y)));
 }
Example #4
0
 public static F64Vec2 RSqrtFastest(F64Vec2 a)
 {
     return(new F64Vec2(F64.RSqrtFastest(a.x), F64.RSqrtFastest(a.y)));
 }
Example #5
0
 public static F64 DistanceFastest(F64Vec2 a, F64Vec2 b)
 {
     return(LengthFastest(a - b));
 }
Example #6
0
 public static F64 Dot(F64Vec2 a, F64Vec2 b)
 {
     return(a.x * b.x + a.y * b.y);
 }
Example #7
0
 public static F64Vec2 Lerp(F64Vec2 a, F64Vec2 b, F64 t)
 {
     return((F64.One - t) * a + t * b);
 }                                                                                               // \todo [petri] is a + t*(b-a) better formula?
Example #8
0
 public static F64Vec2 CosFastest(F64Vec2 a)
 {
     return(new F64Vec2(F64.CosFastest(a.x), F64.CosFastest(a.y)));
 }
Example #9
0
 public static F64Vec2 PowFastest(F64Vec2 a, F64 b)
 {
     return(new F64Vec2(F64.PowFastest(a.x, b), F64.PowFastest(a.y, b)));
 }
Example #10
0
 public static F64Vec2 Log2Fastest(F64Vec2 a)
 {
     return(new F64Vec2(F64.Log2Fastest(a.x), F64.Log2Fastest(a.y)));
 }
Example #11
0
 public static F64Vec2 SinFast(F64Vec2 a)
 {
     return(new F64Vec2(F64.SinFast(a.x), F64.SinFast(a.y)));
 }
Example #12
0
 public static F64Vec2 Log(F64Vec2 a)
 {
     return(new F64Vec2(F64.Log(a.x), F64.Log(a.y)));
 }
Example #13
0
 public static F64Vec2 Exp2Fast(F64Vec2 a)
 {
     return(new F64Vec2(F64.Exp2Fast(a.x), F64.Exp2Fast(a.y)));
 }
Example #14
0
 public static F64Vec2 RcpFast(F64Vec2 a)
 {
     return(new F64Vec2(F64.RcpFast(a.x), F64.RcpFast(a.y)));
 }
Example #15
0
 public static F64 LengthSqr(F64Vec2 a)
 {
     return(a.x * a.x + a.y * a.y);
 }
Example #16
0
 public static F64Vec2 PowFastest(F64 a, F64Vec2 b)
 {
     return(new F64Vec2(F64.PowFastest(a, b.x), F64.PowFastest(a, b.y)));
 }
Example #17
0
 public static F64Vec2 Normalize(F64Vec2 a)
 {
     F64 ooLen = LengthSqr(a).RSqrt(); return(ooLen * a);
 }
Example #18
0
 public static F64 LengthFastest(F64Vec2 a)
 {
     return(F64.SqrtFastest(a.x * a.x + a.y * a.y));
 }
Example #19
0
 public static F64 Distance(F64Vec2 a, F64Vec2 b)
 {
     return(Length(a - b));
 }
Example #20
0
 public static F64Vec2 NormalizeFastest(F64Vec2 a)
 {
     F64 ooLen = F64.RSqrtFastest(LengthSqr(a)); return(ooLen * a);
 }
Example #21
0
 public static F64Vec2 Max(F64Vec2 a, F64Vec2 b)
 {
     return(new F64Vec2(F64.Max(a.x, b.x), F64.Max(a.y, b.y)));
 }
Example #22
0
 public static F64Vec2 SqrtPrecise(F64Vec2 a)
 {
     return(new F64Vec2(F64.SqrtPrecise(a.x), F64.SqrtPrecise(a.y)));
 }