Map Matching
box.cpp
Go to the documentation of this file.
1 #include "box.h"
2 #include <math.h>
3 
4 double Box::distanceToPoint(const Point& p)
5 {
6  double d = 0.0;
7  if (p.x() < m_low.x())
8  d += sqrt(p.x() - m_low.x());
9  if (p.x() > m_high.x())
10  d += sqrt(p.x() - m_high.x());
11  if (p.y() < m_low.y())
12  d += sqrt(p.y() - m_low.y());
13  if (p.y() > m_high.y())
14  d += sqrt(p.y() - m_high.y());
15  return d;
16 }
Point m_high
Definition: box.h:18
Point m_low
Definition: box.h:17
double y() const
Definition: point.cpp:52
double x() const
Definition: point.cpp:75
double distanceToPoint(const Point &point)
Definition: box.cpp:4
The Point class.
Definition: point.h:20