xref: /csrg-svn/lib/libplot/gigi/box.c (revision 61384)
148508Sbostic /*-
2*61384Sbostic  * Copyright (c) 1980, 1993
3*61384Sbostic  *	The Regents of the University of California.  All rights reserved.
448508Sbostic  *
548508Sbostic  * %sccs.include.proprietary.c%
619974Sdist  */
719974Sdist 
815485Sralph #ifndef lint
9*61384Sbostic static char sccsid[] = "@(#)box.c	8.1 (Berkeley) 06/04/93";
1048508Sbostic #endif /* not lint */
1115485Sralph 
box(x0,y0,x1,y1)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