xref: /csrg-svn/lib/libplot/dumb/cont.c (revision 19971)
1*19971Sdist /*
2*19971Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19971Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19971Sdist  * specifies the terms and conditions for redistribution.
5*19971Sdist  */
6*19971Sdist 
715431Sralph #ifndef lint
8*19971Sdist static char sccsid[] = "@(#)cont.c	5.1 (Berkeley) 05/07/85";
9*19971Sdist #endif not lint
1015431Sralph 
1115431Sralph #include "dumb.h"
1215431Sralph 
1315431Sralph cont(x, y)
1415431Sralph 	int x,y;
1515431Sralph {
1615431Sralph 	int x1, y1;
1715431Sralph 	x1 = x;
1815431Sralph 	y1 = y;
1915431Sralph 	scale(x1, y1);
2015431Sralph 	dda_line('*', currentx, currenty, x, y);
2115431Sralph }
22