mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-08 01:10:23 +00:00
74 lines
1.4 KiB
C++
74 lines
1.4 KiB
C++
#include "plot.h"
|
|
|
|
using ncuplot = struct ncuplot {
|
|
ncppplot<uint64_t> n;
|
|
};
|
|
|
|
using ncdplot = struct ncdplot {
|
|
ncppplot<double> n;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
auto ncuplot_create(ncplane* n, const ncplot_options* opts, uint64_t miny, uint64_t maxy) -> ncuplot* {
|
|
auto ret = new ncuplot;
|
|
if(ret){
|
|
if(ncppplot<uint64_t>::create(&ret->n, n, opts, miny, maxy)){
|
|
return ret;
|
|
}
|
|
delete ret;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
auto ncuplot_plane(ncuplot* n) -> ncplane* {
|
|
return n->n.ncp;
|
|
}
|
|
|
|
auto ncuplot_add_sample(ncuplot* n, uint64_t x, uint64_t y) -> int {
|
|
return n->n.add_sample(x, y);
|
|
}
|
|
|
|
auto ncuplot_set_sample(ncuplot* n, uint64_t x, uint64_t y) -> int {
|
|
return n->n.set_sample(x, y);
|
|
}
|
|
|
|
void ncuplot_destroy(ncuplot* n) {
|
|
if(n){
|
|
n->n.destroy();
|
|
delete n;
|
|
}
|
|
}
|
|
|
|
auto ncdplot_create(ncplane* n, const ncplot_options* opts, double miny, double maxy) -> ncdplot* {
|
|
auto ret = new ncdplot;
|
|
if(ret){
|
|
if(ncppplot<double>::create(&ret->n, n, opts, miny, maxy)){
|
|
return ret;
|
|
}
|
|
delete ret;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
auto ncdplot_plane(ncdplot* n) -> ncplane* {
|
|
return n->n.ncp;
|
|
}
|
|
|
|
auto ncdplot_add_sample(ncdplot* n, uint64_t x, double y) -> int {
|
|
return n->n.add_sample(x, y);
|
|
}
|
|
|
|
auto ncdplot_set_sample(ncdplot* n, uint64_t x, double y) -> int {
|
|
return n->n.set_sample(x, y);
|
|
}
|
|
|
|
void ncdplot_destroy(ncdplot* n) {
|
|
if(n){
|
|
n->n.destroy();
|
|
delete n;
|
|
}
|
|
}
|
|
|
|
}
|