xref: /csrg-svn/lib/libplot/aed/move.c (revision 15522)
1*15522Sralph #ifndef lint
2*15522Sralph static char sccsid[] = "@(#)move.c	4.1 (Berkeley) 11/11/83";
3*15522Sralph #endif
4*15522Sralph 
5*15522Sralph #include "aed.h"
6*15522Sralph 
7*15522Sralph /*---------------------------------------------------------
8*15522Sralph  *	This routine moves the current point to (x,y).
9*15522Sralph  *
10*15522Sralph  *	Results:	None.
11*15522Sralph  *	Side Effects:	As above.
12*15522Sralph  *---------------------------------------------------------
13*15522Sralph  */
14*15522Sralph move(x, y)
15*15522Sralph int x, y;
16*15522Sralph {
17*15522Sralph     curx = x;
18*15522Sralph     cury = y;
19*15522Sralph }
20