plan9port/src/cmd/plot/libplot/line.c
2004-04-14 19:54:10 +00:00

5 lines
109 B
C

#include "mplot.h"
void plotline(double x0, double y0, double x1, double y1){
move(x0, y0);
vec(x1, y1);
}