git: 9front

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