mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-20 03:25:47 +00:00
man: separate out ncplot functions
This commit is contained in:
parent
86a95eb4ea
commit
cc3debf259
@ -37,18 +37,23 @@ typedef struct ncplot_options {
|
|||||||
```
|
```
|
||||||
|
|
||||||
**struct ncuplot* ncuplot_create(struct ncplane* n, const ncplot_options* opts, uint64_t miny, uint64_t maxy);**
|
**struct ncuplot* ncuplot_create(struct ncplane* n, const ncplot_options* opts, uint64_t miny, uint64_t maxy);**
|
||||||
|
|
||||||
**struct ncdplot* ncdplot_create(struct ncplane* n, const ncplot_options* opts, double miny, double maxy);**
|
**struct ncdplot* ncdplot_create(struct ncplane* n, const ncplot_options* opts, double miny, double maxy);**
|
||||||
|
|
||||||
**struct ncplane* ncuplot_plane(struct ncuplot* n);**
|
**struct ncplane* ncuplot_plane(struct ncuplot* n);**
|
||||||
|
|
||||||
**struct ncplane* ncdplot_plane(struct ncdplot* n);**
|
**struct ncplane* ncdplot_plane(struct ncdplot* n);**
|
||||||
|
|
||||||
**int ncuplot_add_sample(struct ncuplot* n, uint64_t x, uint64_t y);**
|
**int ncuplot_add_sample(struct ncuplot* n, uint64_t x, uint64_t y);**
|
||||||
|
|
||||||
**int ncdplot_add_sample(struct ncdplot* n, uint64_t x, double y);**
|
**int ncdplot_add_sample(struct ncdplot* n, uint64_t x, double y);**
|
||||||
|
|
||||||
**int ncuplot_set_sample(struct ncuplot* n, uint64_t x, uint64_t y);**
|
**int ncuplot_set_sample(struct ncuplot* n, uint64_t x, uint64_t y);**
|
||||||
|
|
||||||
**int ncdplot_set_sample(struct ncdplot* n, uint64_t x, double y);**
|
**int ncdplot_set_sample(struct ncdplot* n, uint64_t x, double y);**
|
||||||
|
|
||||||
**void ncuplot_destroy(struct ncuplot* n);**
|
**void ncuplot_destroy(struct ncuplot* n);**
|
||||||
|
|
||||||
**void ncdplot_destroy(struct ncdplot* n);**
|
**void ncdplot_destroy(struct ncdplot* n);**
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
|
Loading…
Reference in New Issue
Block a user