#include <ossimAigBounds.h>
Public Methods |
|
ossimAigBounds () | |
void | reset () |
bool | writeStream (std::ostream &out) |
Public Attributes |
|
double | ll_x |
double | ll_y |
double | ur_x |
double | ur_y |
Friends |
|
std::ostream& | operator<< (std::ostream &out, const ossimAigBounds &data) |
|
Definition at line 39 of file ossimAigBounds.h. 00040 { 00041 reset(); 00042 } |
|
Definition at line 44 of file ossimAigBounds.h. Referenced by ossimAigBounds(). 00045 { 00046 ll_x = 0.0; 00047 ll_y = 0.0; 00048 ur_x = 0.0; 00049 ur_y = 0.0; 00050 } |
|
|
Definition at line 30 of file ossimAigBounds.h. 00031 { 00032 out << "ll_x: " << data.ll_x << std::endl 00033 << "ll_y: " << data.ll_y << std::endl 00034 << "ur_x: " << data.ur_x << std::endl 00035 << "ur_y: " << data.ur_y; 00036 00037 return out; 00038 } |
|
Definition at line 52 of file ossimAigBounds.h. |
|
Definition at line 53 of file ossimAigBounds.h. |
|
Definition at line 54 of file ossimAigBounds.h. |
|
Definition at line 55 of file ossimAigBounds.h. |