date and time created 85/01/02 20:29:49 by jak
[unix-history] / usr / src / lib / libplot / bitgraph / circle.c
#ifndef lint
static char sccsid[] = "@(#)circle.c 4.1 (Berkeley) %G%";
#endif
circle (xc,yc,r)
int xc,yc,r;
{
arc(xc,yc, xc+r,yc, xc-r,yc);
arc(xc,yc, xc-r,yc, xc+r,yc);
}