Sign in
plan9port
/
plan9
/
0ace33a41539dedfee1bd73e124fd9ca574f43b1
/
.
/
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
);
}