xref: /csrg-svn/lib/libplot/imagen/circle.c (revision 24991)
1*24991Ssam /*
2*24991Ssam  * Copyright (c) 1985 Regents of the University of California.
3*24991Ssam  * All rights reserved.  The Berkeley software License Agreement
4*24991Ssam  * specifies the terms and conditions for redistribution.
5*24991Ssam  */
6*24991Ssam 
7*24991Ssam #ifndef lint
8*24991Ssam static char sccsid[] = "@(#)circle.c	5.1 (Berkeley) 09/21/85";
9*24991Ssam #endif not lint
10*24991Ssam 
11*24991Ssam circle(x,y,r){
12*24991Ssam 	arc(x,y,x+r,y,x+r,y);
13*24991Ssam }
14