Nuitrack  1.11.2
3D Skeleton Tracking Middleware
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Events Groups Pages
BoundingBox.h
1 #ifndef NUITRACK_BOUNDING_BOX_H_
2 #define NUITRACK_BOUNDING_BOX_H_
3 
4 namespace tdv
5 {
6 namespace nuitrack
7 {
13 {
14  BoundingBox(float top = 0.0, float bottom = 1.0,
15  float left = 0.0, float right = 1.0) :
17 
18  float top;
19  float bottom;
20  float left;
21  float right;
22 };
23 
24 } /* namespace nuitrack */
25 } /* namespace tdv */
26 
27 #endif /* NUITRACK_BOUNDING_BOX_H_ */
float left
Position of the left face of the bounding box.
Definition: BoundingBox.h:20
Stores a bounding box properties.
Definition: BoundingBox.h:12
float right
Position of the right face of the bounding box.
Definition: BoundingBox.h:21
float bottom
Position of the bottom face of the bounding box.
Definition: BoundingBox.h:19
float top
Position of the top face of the bounding box.
Definition: BoundingBox.h:18