ARMS  3.1.1
Documentation for ARMS movement library
point.h
1 #ifndef _ARMS_POINT_H_
2 #define _ARMS_POINT_H_
3 
4 #include <array>
5 #include <cmath>
6 
7 namespace arms {
8 
30 union Point {
32  Point operator-() {
33  return {-x, -y};
34  }
35 
36  Point operator+(const Point& o) {
37  return {x + o.x, y + o.y};
38  }
39 
40  Point operator-(const Point& o) {
41  return {x - o.x, y - o.y};
42  }
43 
44  Point operator*(const Point& o) {
45  return {x * o.x, y * o.y};
46  }
47 
48  Point operator/(const Point& o) {
49  return {x / o.x, y / o.y};
50  }
51 
52  Point& operator+=(Point& o) {
53  x += o.x, y += o.y;
54  return *this;
55  }
56 
57  Point& operator-=(Point& o) {
58  x -= o.x, y -= o.y;
59  return *this;
60  }
61 
62  Point& operator*=(Point& o) {
63  x *= o.x, y *= o.y;
64  return *this;
65  }
66 
67  Point& operator/=(Point& o) {
68  x /= o.x, y /= o.y;
69  return *this;
70  }
71 
72  double& operator[](unsigned int index) {
73  return data[index];
74  }
75 
76  // This is a stop gap until the codebase is made to use Point for bot
77  // coordinates
78  //
79  // TODO: Replace PID code to use this class
80  std::array<double, 2> std() {
81  return {x, y};
82  }
84 
85  struct {
86  double x, y;
87  };
88  double data[2];
89 
90 };
91 
92 
94 inline Point operator*(double s, const Point& v) {
95  return {s * v.x, s * v.y};
96 }
97 
98 inline Point operator*(const Point& v, double s) {
99  return {s * v.x, s * v.y};
100 }
101 
102 inline Point operator/(const Point& v, double s) {
103  return {v.x / s, v.y / s};
104 }
105 
106 inline Point& operator*=(Point& v, double s) {
107  v.x *= s, v.y *= s;
108  return v;
109 }
110 
111 inline Point& operator/=(Point& v, double s) {
112  v.x /= s, v.y /= s;
113  return v;
114 }
115 
116 inline double dot(Point& a, Point& b) {
117  return a.x * b.x + a.y * b.y;
118 }
119 
120 inline double length2(Point& p) {
121  return p.x * p.x + p.y * p.y;
122 }
123 
124 // Why does c++ have weird things like r-value references... ;_;
125 inline double length2(Point&& p) {
126  return p.x * p.x + p.y * p.y;
127 }
128 
129 inline double length(Point& p) {
130  if (p.x == 0.0 && p.y == 0.0)
131  return 0.0;
132  else
133  return std::sqrt(p.x * p.x + p.y * p.y);
134 }
135 
136 inline double length(Point&& p) {
137  if (p.x == 0.0 && p.y == 0.0)
138  return 0.0;
139  else
140  return std::sqrt(p.x * p.x + p.y * p.y);
141 }
142 
143 inline Point normalize(Point& a) {
144  return a / length(a);
145 }
146 
147 inline Point normalize(Point&& a) {
148  return a / length(a);
149 }
151 } // namespace arms
152 
153 #endif //_ARMS_POINT_H_
Definition: point.h:30
double x
Definition: point.h:86
double data[2]
Definition: point.h:88
double y
Definition: point.h:86