git: 9front

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