|
|
tscale.h - ploot - simple plotting tools |
|
|
 |
git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ploot (git://bitreich.org) |
|
|
 |
Log |
|
|
 |
Files |
|
|
 |
Refs |
|
|
 |
Tags |
|
|
 |
README |
|
|
|
--- |
|
|
|
tscale.h (368B) |
|
|
|
--- |
|
|
|
1 #ifndef SCALE_H |
|
|
|
2 #define SCALE_H |
|
|
|
3 |
|
|
|
4 #include <stddef.h> |
|
|
|
5 #include <time.h> |
|
|
|
6 |
|
|
|
7 #include "csv.h" |
|
|
|
8 |
|
|
|
9 /**/ |
|
|
|
10 int scale_ypos (double, double, double, int); |
|
|
|
11 int scale_xpos (time_t, time_t, time_t, int); |
|
|
|
12 void scale_minmax (struct csv *, int, time_t *, time_t *, double *, double *); |
|
|
|
13 time_t scale_tstep (time_t, time_t, int); |
|
|
|
14 double scale_vstep (double, double, int); |
|
|
|
15 |
|
|
|
16 #endif |
|