Map Matching
Main Page
Related Pages
Classes
Files
File List
File Members
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
}
Box::m_high
Point m_high
Definition:
box.h:18
Box::m_low
Point m_low
Definition:
box.h:17
Point::y
double y() const
Definition:
point.cpp:52
Point::x
double x() const
Definition:
point.cpp:75
box.h
Box::distanceToPoint
double distanceToPoint(const Point &point)
Definition:
box.cpp:4
Point
The Point class.
Definition:
point.h:20
KDTreeAlgos
box.cpp
Generated on Sat Dec 3 2016 18:38:42 for Map Matching by
1.8.11