Map Matching
point.cpp
Go to the documentation of this file.
1 #include "point.h"
2 #include <algorithm>
3 #include <iomanip>
4 #include <math.h>
5 #include <sstream>
6 
7 const double Point::POINT_RADIUS = 200;
8 
9 bool Point::samePointAs(const Point& p) const
10 {
11  return (fabs(m_x - p.m_x) < EPS) && (fabs(m_y - p.m_y) < EPS);
12 }
13 
14 double Point::distanceToPoint(const Point& p) const
15 {
16  return sqrt(pow(p.m_x - this->m_x, 2) + pow(p.m_y - this->m_y, 2));
17 }
18 
19 std::vector<double> Point::projectionOnSegment(const Point& a, const Point& b) const
20 {
21  double num = (this->m_x - a.m_x) * (b.m_x - a.m_x) + (this->m_y - a.m_y) * (b.m_y - a.m_y);
22  double tSol = num / pow(a.distanceToPoint(b), 2);
23  double t = std::max(0.0, std::min(1.0, tSol));
24  Point proj(a.m_x + t * (b.m_x - a.m_x), a.m_y + t * (b.m_y - a.m_y));
25  std::vector<double> res;
26  res.push_back(proj.x());
27  res.push_back(proj.y());
28  res.push_back(this->distanceToPoint(proj));
29  return res;
30 }
31 
32 double Point::distanceToSegment(const Point& a, const Point& b) const
33 {
34  if (a.samePointAs(b)) {
35  return this->distanceToPoint(a);
36  } else {
37  double num = (this->m_x - a.m_x) * (b.m_x - a.m_x) + (this->m_y - a.m_y) * (b.m_y - a.m_y);
38  double tSol = num / pow(a.distanceToPoint(b), 2);
39  double t = std::max(0.0, std::min(1.0, tSol));
40  Point proj(a.m_x + t * (b.m_x - a.m_x), a.m_y + t * (b.m_y - a.m_y));
41  return this->distanceToPoint(proj);
42  }
43 }
44 
45 std::string Point::infos() const
46 {
47  std::stringstream ss;
48  ss << "(" << std::fixed << std::setprecision(2) << m_x << ", " << m_y << ") ";
49  return ss.str();
50 }
51 
52 double Point::y() const
53 {
54  return m_y;
55 }
56 
57 void Point::sety(double y)
58 {
59  m_y = y;
60 }
61 
62 double Point::x(int dim) const
63 {
64  return (dim == 0) ? m_x : m_y;
65 }
66 
67 void Point::setx(int dim, double value)
68 {
69  if (dim == 0)
70  m_x = value;
71  else
72  m_y = value;
73 }
74 
75 double Point::x() const
76 {
77  return m_x;
78 }
79 
80 void Point::setx(double x)
81 {
82  m_x = x;
83 }
double distanceToSegment(const Point &p1, const Point &p2) const
Compute the distance between a point and a segment.
Definition: point.cpp:32
double m_y
Definition: point.h:89
void setx(double x)
Definition: point.cpp:80
Class Point.
bool samePointAs(const Point &p) const
Check if two points share the same coordinates.
Definition: point.cpp:9
void sety(double y)
Definition: point.cpp:57
static const double POINT_RADIUS
Definition: point.h:92
double y() const
Definition: point.cpp:52
double x() const
Definition: point.cpp:75
virtual std::string infos() const
Definition: point.cpp:45
double distanceToPoint(const Point &p) const
Calculate distance between two points.
Definition: point.cpp:14
double m_x
Definition: point.h:88
std::vector< double > projectionOnSegment(const Point &a, const Point &b) const
Definition: point.cpp:19
The Point class.
Definition: point.h:20
#define EPS
Used to compare doubles.
Definition: point.h:14