AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
DVector2.cs
1 using UnityEngine;
2 using M = System.Math;
3 // ReSharper disable InconsistentNaming
4 
5 namespace ARLocation
6 {
7  [System.Serializable]
8  public struct DVector2
9  {
10  public double x;
11  public double y;
12 
17  public double magnitude
18  {
19  get
20  {
21  return M.Sqrt(x * x + y * y);
22  }
23  }
24 
30  {
31  get
32  {
33  var m = magnitude;
34 
35  if (m < 0.00000001)
36  {
37  return new DVector2();
38  }
39 
40  return new DVector2(x, y) / magnitude;
41  }
42  }
43 
44  public DVector2 Clone()
45  {
46  return new DVector2(x, y);
47  }
48 
54  public DVector2(double x = 0.0, double y = 0.0)
55  {
56  this.x = x;
57  this.y = y;
58  }
59 
64  public Vector2 toVector2()
65  {
66  return new Vector2((float)x, (float)y);
67  }
68 
75  public bool Equals(DVector2 v, double e = 0.00005)
76  {
77  return (M.Abs(x - v.x) <= e) && (M.Abs(y - v.y) <= e);
78  }
79 
83  public void Normalize()
84  {
85  double m = magnitude;
86  x /= m;
87  y /= m;
88  }
89 
95  public void Set(double newX = 0.0, double newY = 0.0)
96  {
97  x = newX;
98  y = newY;
99  }
100 
105  override public string ToString()
106  {
107  return "(" + x + ", " + y + ")";
108  }
109 
116  public static double Dot(DVector2 a, DVector2 b)
117  {
118  return a.x * b.x + a.y * b.y;
119  }
120 
127  public static double Distance(DVector2 a, DVector2 b)
128  {
129  return M.Sqrt(a.x * b.x + a.y * b.y);
130  }
131 
139  public static DVector2 Lerp(DVector2 a, DVector2 b, double t)
140  {
141  double s = M.Max(0, M.Min(t, 1));
142  return a * (1 - s) + b * s;
143  }
144 
151  public static DVector2 operator *(DVector2 a, double b)
152  {
153  return new DVector2(
154  b * a.x,
155  b * a.y
156  );
157  }
158 
165  public static DVector2 operator /(DVector2 a, double b)
166  {
167  return new DVector2(
168  a.x / b,
169  a.y / b
170  );
171  }
172 
179  public static DVector2 operator +(DVector2 a, DVector2 b)
180  {
181  return new DVector2(
182  a.x + b.x,
183  a.y + b.y
184  );
185  }
186 
193  public static DVector2 operator -(DVector2 a, DVector2 b)
194  {
195  return new DVector2(
196  a.x - b.x,
197  a.y - b.y
198  );
199  }
200  }
201 }
ARLocation.DVector2.Dot
static double Dot(DVector2 a, DVector2 b)
Dot the specified a and b.
Definition: DVector2.cs:116
ARLocation.DVector2.ToString
override string ToString()
Returns a T:System.String that represents the current T:DVector2.
Definition: DVector2.cs:105
ARLocation.DVector2.Normalize
void Normalize()
Normalize this instance.
Definition: DVector2.cs:83
ARLocation.DVector2.operator/
static DVector2 operator/(DVector2 a, double b)
Computes the division of a and b, yielding a new T:DVector2.
Definition: DVector2.cs:165
ARLocation.DVector2.Distance
static double Distance(DVector2 a, DVector2 b)
Distance the specified a and b.
Definition: DVector2.cs:127
ARLocation.DVector2.magnitude
double magnitude
Gets the magnitude of the vector.
Definition: DVector2.cs:18
ARLocation.DVector2.Lerp
static DVector2 Lerp(DVector2 a, DVector2 b, double t)
Lerp the specified a, b and t.
Definition: DVector2.cs:139
ARLocation.DVector2.toVector2
Vector2 toVector2()
Converts to a Vector2.
Definition: DVector2.cs:64
ARLocation.DVector2.operator+
static DVector2 operator+(DVector2 a, DVector2 b)
Adds a DVector2 to a DVector2, yielding a new T:DVector2.
Definition: DVector2.cs:179
ARLocation.DVector2.Equals
bool Equals(DVector2 v, double e=0.00005)
Equals the specified v and e.
Definition: DVector2.cs:75
ARLocation.DVector2.operator-
static DVector2 operator-(DVector2 a, DVector2 b)
Subtracts a DVector2 from a DVector2, yielding a new T:DVector2.
Definition: DVector2.cs:193
ARLocation
Definition: ARLocationConfigInspector.cs:7
ARLocation.DVector2
Definition: DVector2.cs:9
ARLocation.DVector2.operator*
static DVector2 operator*(DVector2 a, double b)
Computes the product of a and b, yielding a new T:DVector2.
Definition: DVector2.cs:151
ARLocation.DVector2.normalized
DVector2 normalized
Gets the normalized version of this vector.
Definition: DVector2.cs:30
ARLocation.DVector2.DVector2
DVector2(double x=0.0, double y=0.0)
Initializes a new instance of the T:DVector2 struct.
Definition: DVector2.cs:54
ARLocation.DVector2.Set
void Set(double newX=0.0, double newY=0.0)
Set the specified x and y.
Definition: DVector2.cs:95