From 41f1f8bb491697fda2ab5a3fa1011c219d89b413 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 3 Apr 2020 02:09:36 -0400 Subject: [PATCH] python needs ncgridgeom_e --- python/src/notcurses/build_notcurses.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/python/src/notcurses/build_notcurses.py b/python/src/notcurses/build_notcurses.py index 325f95fe3..fb6d343c7 100644 --- a/python/src/notcurses/build_notcurses.py +++ b/python/src/notcurses/build_notcurses.py @@ -410,6 +410,20 @@ int ncplane_rotate_cw(struct ncplane* n); int ncplane_rotate_ccw(struct ncplane* n); void ncplane_translate(const struct ncplane* src, const struct ncplane* dst, int* y, int* x); bool ncplane_translate_abs(const struct ncplane* n, int* y, int* x); +typedef enum { + NCPLOT_1x1, + NCPLOT_1x1x4, + NCPLOT_2x1TB, + NCPLOT_2x1BT, + NCPLOT_1x2LR, + NCPLOT_1x2RL, + NCPLOT_2x2, + NCPLOT_4x1, + NCPLOT_1x4, + NCPLOT_8x1, + NCPLOT_1x8, + NCPLOT_4x2, +} ncgridgeom_e; typedef struct ncplot_options { uint64_t maxchannel; uint64_t minchannel;