xref: /csrg-svn/lib/libplot/dumb/move.c (revision 61361)
148505Sbostic /*-
2*61361Sbostic  * Copyright (c) 1980, 1993
3*61361Sbostic  *	The Regents of the University of California.  All rights reserved.
448505Sbostic  *
548505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815438Sralph #ifndef lint
9*61361Sbostic static char sccsid[] = "@(#)move.c	8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115438Sralph 
1215438Sralph #include "dumb.h"
1315438Sralph 
move(x,y)1415438Sralph move(x,y)
1515438Sralph int x,y;
1615438Sralph {
1715438Sralph 	scale(x, y);
1815438Sralph 	currentx = x;
1915438Sralph 	currenty = y;
2015438Sralph }
21