*/
#include "chart.h"
+#include <float.h>
#include <gtk/gtk.h>
#define BV_CHART_PRIVATE(obj) \
struct _BVChartPrivate {
GArray *points;
+ float minx, miny, maxx, maxy;
};
struct BVChartPoint {
gboolean clear_ = FALSE;
priv->points =
g_array_new(zero_terminated, clear_, sizeof(struct BVChartPoint));
+ priv->minx = FLT_MAX;
+ priv->miny = FLT_MAX;
+ priv->maxx = FLT_MIN;
+ priv->maxy = FLT_MIN;
}
GtkWidget *bv_chart_new() {
void bv_chart_add_point(BVChart *chart, float x, float y) {
BVChartPrivate *priv = bv_chart_get_instance_private(chart);
+ if (x < priv->minx)
+ priv->minx = x;
+ if (y < priv->miny)
+ priv->miny = y;
+ if (x > priv->maxx)
+ priv->maxx = x;
+ if (y > priv->maxy)
+ priv->maxy = y;
struct BVChartPoint p = {.x = x, .y = y};
g_array_append_val(priv->points, p);
}