shithub: riscv

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