#define INITIAL_XCOORD  250
#define INITIAL_YCOORD  250
#define INITIAL_WIDTH   538
#define INITIAL_HEIGHT  630

typedef struct point
{
	int x;
	int y;
} POINT;
  
typedef struct line
{
	POINT begpt;
	POINT endpt;
} LINE;

