date and time created 83/11/10 16:04:05 by ralph
[unix-history] / usr / src / lib / libplot / gigi / circle.c
#ifndef lint
static char sccsid[] = "@(#)circle.c 4.1 (Berkeley) %G%";
#endif
#include "gigi.h"
circle (xc,yc,r)
int xc,yc,r;
{
if(r < 1){
point(xc, yc);
return;
}
move(xc, yc);
printf("C[%d]", r);
}