xref: /csrg-svn/lib/libplot/aed/cont.c (revision 15516)
1*15516Sralph #ifndef lint
2*15516Sralph static char sccsid[] = "@(#)cont.c	4.1 (Berkeley) 11/11/83";
3*15516Sralph #endif
4*15516Sralph 
5*15516Sralph #include "aed.h"
6*15516Sralph 
7*15516Sralph /*---------------------------------------------------------
8*15516Sralph  *	Cont plots a line between (curx, cury) and (x, y).
9*15516Sralph  *
10*15516Sralph  *	Results:	None.
11*15516Sralph  *	Side Effects:	As above.
12*15516Sralph  *---------------------------------------------------------
13*15516Sralph  */
14*15516Sralph cont(x, y)
15*15516Sralph int x, y;
16*15516Sralph {
17*15516Sralph     line(curx, cury, x, y);
18*15516Sralph }
19