xref: /plan9/sys/src/cmd/plot/libplot/line.c (revision 0b459c2cb92b7c9d88818e9a2f72e678e5bc4553)
1 #include "mplot.h"
2 void plotline(double x0, double y0, double x1, double y1){
3 	move(x0, y0);
4 	vec(x1, y1);
5 }
6