git: 9front

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