Sign in
plan9port
/
plan9
/
67e4fce4f5b62cf5f9e6b4b7b59ff2b2818d21f5
/
.
/
src
/
cmd
/
plot
/
libplot
/
line.c
blob: 416d2eea1ddffc42c40121099d66dd0be1b35e13 [
file
] [
log
] [
blame
]
#include
"mplot.h"
void
plotline
(
double
x0
,
double
y0
,
double
x1
,
double
y1
){
move
(
x0
,
y0
);
vec
(
x1
,
y1
);
}