git: 9front

ref: d7b52500f32c3e540cdb79ad72e5e9e86f4cd31e
dir: /sys/src/cmd/plot/libplot/line.c/

View raw version
#include "mplot.h"
void plotline(double x0, double y0, double x1, double y1){
	move(x0, y0);
	vec(x1, y1);
}