xref: /csrg-svn/lib/libplot/dumb/space.c (revision 61365)
148505Sbostic /*-
2*61365Sbostic  * Copyright (c) 1980, 1993
3*61365Sbostic  *	The Regents of the University of California.  All rights reserved.
448505Sbostic  *
548505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815441Sralph #ifndef lint
9*61365Sbostic static char sccsid[] = "@(#)space.c	8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115441Sralph 
1215441Sralph #include "dumb.h"
1315441Sralph 
space(x0,y0,x1,y1)1415441Sralph space(x0, y0, x1, y1)
1515441Sralph 	int x0, y0, x1, y1;
1615441Sralph {
1715441Sralph 	minX = x0;
1815441Sralph 	rangeX = x1 -x0;
1915441Sralph 	minY = y0;
2015441Sralph 	rangeY = y1 - y0;
2115441Sralph }
22