WhiteBoard Project using C RPC
A Project in Distributed Computing at IIIT-Delhi
oneln.h
Go to the documentation of this file.
1 
2 struct OneLn { /* one line segment */
3  int x1; /* coordinates of end points */
4  int y1;
5  int x2;
6  int y2;
7  long color; /* RGB color value */
8 };
9 
Definition: oneln.h:2
int y1
Definition: oneln.h:4
int x1
Definition: oneln.h:3
int x2
Definition: oneln.h:5
long color
Definition: oneln.h:7
int y2
Definition: oneln.h:6