xref: /csrg-svn/lib/libplot/gigi/box.c (revision 48508)
1*48508Sbostic /*-
2*48508Sbostic  * Copyright (c) 1980 The Regents of the University of California.
3*48508Sbostic  * All rights reserved.
4*48508Sbostic  *
5*48508Sbostic  * %sccs.include.proprietary.c%
619974Sdist  */
719974Sdist 
815485Sralph #ifndef lint
9*48508Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48508Sbostic #endif /* not lint */
1115485Sralph 
1215485Sralph box(x0, y0, x1, y1)
1315485Sralph {
1415485Sralph 	move(x0, y0);
1515485Sralph 	cont(x0, y1);
1615485Sralph 	cont(x1, y1);
1715485Sralph 	cont(x1, y0);
1815485Sralph 	cont(x0, y0);
1915485Sralph 	move(x1, y1);
2015485Sralph }
21