All Classes Files Functions Variables Pages
Box.h
Go to the documentation of this file.
1 
2 
7 struct Box
8 {
10  int* l;
12  int* u;
14  float A;
15 };
16 
17 
18 
19 
Rectangle structure.
Definition: Box.h:7
float A
Volume-based measure of the rectangle.
Definition: Box.h:14
int * u
Upper vertex of the rectangle.
Definition: Box.h:12
int * l
Lower vertex of the rectnagle.
Definition: Box.h:10