date and time created 85/09/21 15:05:43 by sam
[unix-history] / usr / src / lib / libplot / vt0 / line.c
CommitLineData
0c29e482
SL
1#ifndef lint
2static char sccsid[] = "@(#)line.c 4.1 (Berkeley) %G%";
3#endif
4
5extern vti;
6extern xnow,ynow;
7line(x0,y0,x1,y1){
8 struct{char x,c; int x0,y0,x1,y1;} p;
9 p.c = 3;
10 p.x0 = xsc(x0);
11 p.y0 = ysc(y0);
12 p.x1 = xnow = xsc(x1);
13 p.y1 = ynow = ysc(y1);
14 write(vti,&p.c,9);
15}
16cont(x0,y0){
17 line(xnow,ynow,xsc(x0),ysc(y0));
18 return;
19}