00001 #ifndef _WINC_COORDS 00002 #define _WINC_COORDS 00003 00004 namespace WXP { 00005 class Coords { /* Coordinate data structure */ 00006 float xmin, ymin; 00007 float xmax, ymax; 00008 float xext, yext; 00009 00010 public: 00011 int init(); 00012 Coords(); 00013 Coords( float x1, float y1, float x2, float y2 ); 00014 int set( float x1, float y1, float x2, float y2 ); 00015 int print(); 00016 00017 friend class GTran; 00018 }; 00019 } 00020 #endif
1.6.1