git: 9front

ref: c4fe049c3e2935ae4c6ab6cd7b85b393349669c9
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);
}