Rect Struct Reference
Detailed Description
Definition at line 10 of file Test.cpp.
|
Public Member Functions |
| | Rect (int a_minX, int a_minY, int a_maxX, int a_maxY) |
| | Rect () |
Data Fields |
| int | max [2] |
| int | min [2] |
Constructor & Destructor Documentation
| Rect::Rect |
( |
int |
a_minX, |
|
|
int |
a_minY, |
|
|
int |
a_maxX, |
|
|
int |
a_maxY | |
|
) |
| | [inline] |
Definition at line 14 of file Test.cpp.
References max, and min.
00015 {
00016 min[0] = a_minX;
00017 min[1] = a_minY;
00018
00019 max[0] = a_maxX;
00020 max[1] = a_maxY;
00021 }
Field Documentation
The documentation for this struct was generated from the following file: