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_tlsv12/sys/src/cmd/plot/libplot/box.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 box(double x0, double y0, double x1, double y1){
3
	move(x0, y0);
4
	vec(x0, y1);
5
	vec(x1, y1);
6
	vec(x1, y0);
7
	vec(x0, y0);
8
}