Map Matching
Main Page
Related Pages
Classes
Files
File List
File Members
box.h
Go to the documentation of this file.
1
#ifndef BOX_H
2
#define BOX_H
3
4
#include "../point.h"
5
6
class
Box
{
7
public
:
8
Box
() {}
9
Box
(
const
Point
& low,
const
Point
& high)
10
:
m_low
(low)
11
,
m_high
(high)
12
{
13
}
14
15
double
distanceToPoint
(
const
Point
& point);
16
17
Point
m_low
;
18
Point
m_high
;
19
};
20
21
#endif // BOX_H
Box::m_high
Point m_high
Definition:
box.h:18
Box::Box
Box()
Definition:
box.h:8
Box::m_low
Point m_low
Definition:
box.h:17
Box::distanceToPoint
double distanceToPoint(const Point &point)
Definition:
box.cpp:4
Box::Box
Box(const Point &low, const Point &high)
Definition:
box.h:9
Box
Definition:
box.h:6
Point
The Point class.
Definition:
point.h:20
KDTreeAlgos
box.h
Generated on Sat Dec 3 2016 18:38:42 for Map Matching by
1.8.11