Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_fixcpp/sys/src/cmd/plot/libplot/circ.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include "mplot.h"
2
void circ(double xc, double yc, double r){
3
	Point p;
4
	int rad;
5
	p.x=SCX(xc);
6
	p.y=SCY(yc);
7
	if (r < 0) 
8
		rad=SCR(-r);
9
	else
10
		rad=SCR(r);
11
	ellipse(screen, p, rad, rad, 0, getcolor(e1->foregr), ZP);
12
}