xref: /csrg-svn/lib/libplot/dumb/cont.c (revision 61346)
148505Sbostic /*-
2*61346Sbostic  * Copyright (c) 1980, 1993
3*61346Sbostic  *	The Regents of the University of California.  All rights reserved.
448505Sbostic  *
548505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815431Sralph #ifndef lint
9*61346Sbostic static char sccsid[] = "@(#)cont.c	8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115431Sralph 
1215431Sralph #include "dumb.h"
1315431Sralph 
cont(x,y)1415431Sralph cont(x, y)
1515431Sralph 	int x,y;
1615431Sralph {
1715431Sralph 	int x1, y1;
1815431Sralph 	x1 = x;
1915431Sralph 	y1 = y;
2015431Sralph 	scale(x1, y1);
2115431Sralph 	dda_line('*', currentx, currenty, x, y);
2215431Sralph }
23