date and time created 85/01/02 20:29:37 by jak
[unix-history] / usr / src / lib / libplot / hp7221 / circle.c
#ifndef lint
static char sccsid[] = "@(#)circle.c 4.1 (Berkeley) %G%";
#endif
#include "hp7221.h"
circle (xc,yc,r)
int xc,yc,r;
{
if( r < 1 ) {
point( xc, yc );
return;
}
move( xc, yc );
putchar( 't' );
putMBN( scaleX(r) );
}