xref: /csrg-svn/lib/libplot/gigi/circle.c (revision 15486)
1*15486Sralph #ifndef lint
2*15486Sralph static char sccsid[] = "@(#)circle.c	4.1 (Berkeley) 11/10/83";
3*15486Sralph #endif
4*15486Sralph 
5*15486Sralph #include "gigi.h"
6*15486Sralph 
7*15486Sralph circle (xc,yc,r)
8*15486Sralph int xc,yc,r;
9*15486Sralph {
10*15486Sralph 	if(r < 1){
11*15486Sralph 		point(xc, yc);
12*15486Sralph 		return;
13*15486Sralph 	}
14*15486Sralph 	move(xc, yc);
15*15486Sralph 	printf("C[%d]", r);
16*15486Sralph }
17