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