shithub: front

ref: d95be792d6b5e4a2f9f1615a40492020c764ee30
dir: /sys/src/cmd/plot/libplot/disk.c/

View raw version
#include "mplot.h"
void plotdisc(double xc, double yc, double r){
	Point p;
	int rad;
	p.x=SCX(xc);
	p.y=SCY(yc);
	if (r < 0) 
		rad=SCR(-r);
	else
		rad=SCR(r);
	m_disc(p, rad, e1->foregr);
}