[ref] move title to the bottom - ploot - simple plotting tools | |
git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit f9cd66a8878f2119e06cb341850048f8cb70315d | |
parent 8f05e8625d7d5a684fba3ab97c911d3b98e1ecdd | |
Author: Josuah Demangeon <[email protected]> | |
Date: Wed, 14 Feb 2018 20:33:51 +0100 | |
[ref] move title to the bottom | |
Diffstat: | |
M ploot.c | 7 +++++-- | |
1 file changed, 5 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/ploot.c b/ploot.c | |
@@ -4,6 +4,7 @@ | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
+#include <time.h> | |
#include "config.h" | |
@@ -158,8 +159,6 @@ plot(double *beg, double *end, int height, char *str, time_… | |
int h; | |
putchar('\n'); | |
- if (str != NULL) | |
- title(str, end - beg); | |
max = maxdv(beg, end); | |
for (h = height + height % 2; h > 0; h -= 2) { | |
@@ -169,8 +168,12 @@ plot(double *beg, double *end, int height, char *str, time… | |
vaxis(top, h); | |
line(beg, end, top, bot); | |
} | |
+ | |
haxis(beg, end, start); | |
+ if (str != NULL) | |
+ title(str, end - beg); | |
+ | |
putchar('\n'); | |
} | |