WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
Coords.h
1#ifndef _WINC_COORDS
2#define _WINC_COORDS
3
4namespace WXP {
5 struct Coords { /* Coordinate data structure */
6 float xmin, ymin;
7 float xmax, ymax;
8 float xext, yext;
9
10 int init();
11 Coords();
12 Coords( float x1, float y1, float x2, float y2 );
13 int set( float x1, float y1, float x2, float y2 );
14 int print();
15
16 friend class GTran;
17 };
18}
19#endif
This class creates device independent coordinate systems.
Definition: GTran.h:10
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct defines a set of parameters for rectangular regions.
Definition: Coords.h:5
int set(float x1, float y1, float x2, float y2)
Definition: Coords.cc:58
Coords()
Definition: Coords.cc:31
int init()
Definition: Coords.cc:18
int print()
Definition: Coords.cc:71