]> git.scottworley.com Git - batteryviewer/commitdiff
Track min & max coordinates
authorScott Worley <scottworley@scottworley.com>
Thu, 23 Feb 2023 06:33:28 +0000 (22:33 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 23 Feb 2023 06:33:28 +0000 (22:33 -0800)
chart.c

diff --git a/chart.c b/chart.c
index 8b05d33e0ecd28f02abc8419fa54f76f2b7254ba..27057839c0618502c34d3dbb225d54b5077bb779 100644 (file)
--- a/chart.c
+++ b/chart.c
@@ -4,6 +4,7 @@
  */
 
 #include "chart.h"
+#include <float.h>
 #include <gtk/gtk.h>
 
 #define BV_CHART_PRIVATE(obj)                                                  \
@@ -13,6 +14,7 @@ typedef struct _BVChartPrivate BVChartPrivate;
 
 struct _BVChartPrivate {
   GArray *points;
+  float minx, miny, maxx, maxy;
 };
 
 struct BVChartPoint {
@@ -31,6 +33,10 @@ static void bv_chart_init(BVChart *chart) {
   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() {
@@ -39,6 +45,14 @@ 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);
 }