From 4b2edf0019c91060260e9bb3f49f22690115bf06 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 5 Nov 2020 14:20:57 -0500 Subject: [PATCH] ncplot: add comment regarding d vs u --- include/notcurses/notcurses.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/notcurses/notcurses.h b/include/notcurses/notcurses.h index 81356955b..3e1ca695c 100644 --- a/include/notcurses/notcurses.h +++ b/include/notcurses/notcurses.h @@ -2989,9 +2989,10 @@ typedef struct ncplot_options { uint64_t flags; // bitfield over NCPLOT_OPTION_* } ncplot_options; -// Use the provided plane 'n' for plotting according to the options 'opts'. -// The plot will make free use of the entirety of the plane. -// for domain autodiscovery, set miny == maxy == 0. +// Use the provided plane 'n' for plotting according to the options 'opts'. The +// plot will make free use of the entirety of the plane. For domain +// autodiscovery, set miny == maxy == 0. ncuplot holds uint64_ts, while +// ncdplot holds doubles. API struct ncuplot* ncuplot_create(struct ncplane* n, const ncplot_options* opts, uint64_t miny, uint64_t maxy) __attribute__ ((nonnull (1)));