Map Matching
Main Page
Related Pages
Classes
Files
File List
File Members
boxnode.h
Go to the documentation of this file.
1
#ifndef BOXNODE_H
2
#define BOXNODE_H
3
4
#include "
box.h
"
5
6
class
BoxNode
:
public
Box
{
7
8
public
:
9
BoxNode
() {}
10
11
BoxNode
(
Point
low,
Point
high,
int
mother,
int
daughterOne,
int
daughterTwo,
int
myptlo,
int
mypthi)
12
:
Box
(low, high)
13
,
m_motherBox
(mother)
14
,
m_daughterBox1
(daughterOne)
15
,
m_daughterBox2
(daughterTwo)
16
,
m_indexOfLowerPoint
(myptlo)
17
,
m_indexOfUpperPoint
(mypthi)
18
{
19
}
20
21
// protected: // no protection, classe only used within kdtree
22
int
m_motherBox
,
m_daughterBox1
,
m_daughterBox2
;
23
int
m_indexOfLowerPoint
,
m_indexOfUpperPoint
;
24
};
25
26
#endif // BOXNODE_H
BoxNode
Definition:
boxnode.h:6
BoxNode::BoxNode
BoxNode()
Definition:
boxnode.h:9
BoxNode::m_daughterBox2
int m_daughterBox2
Definition:
boxnode.h:22
BoxNode::m_indexOfLowerPoint
int m_indexOfLowerPoint
Definition:
boxnode.h:23
BoxNode::BoxNode
BoxNode(Point low, Point high, int mother, int daughterOne, int daughterTwo, int myptlo, int mypthi)
Definition:
boxnode.h:11
BoxNode::m_indexOfUpperPoint
int m_indexOfUpperPoint
Definition:
boxnode.h:23
BoxNode::m_motherBox
int m_motherBox
Definition:
boxnode.h:22
box.h
BoxNode::m_daughterBox1
int m_daughterBox1
Definition:
boxnode.h:22
Box
Definition:
box.h:6
Point
The Point class.
Definition:
point.h:20
KDTreeAlgos
boxnode.h
Generated on Sat Dec 3 2016 18:38:42 for Map Matching by
1.8.11