]> pd.if.org Git - hexagon/blobdiff - t/hexbin.c
rework library to use structs
[hexagon] / t / hexbin.c
index 293d0f7782748e229071a980f4c4616aa9ca5950..7afe2700030efd7877bfbc4bbf42f2e1330009b2 100644 (file)
@@ -3,23 +3,30 @@
 #include "ctap.h"
 
 int main(void) {
-       int x, y;
-
-       plan(6);
-
-       HL_hexbin(1.0, 0.444194, -4.639363, &x, &y);
-       ok(x == 1 && y == 4, "hexbin 0.444194, 4.639363 = 1, 4, %d %d", x, y);
-
-        HL_hexbin(1.0, 0.0, 0.0, &x, &y);
-        ok(x == 0 && y == 0, "0.0 0.0 -> 0 0");
-
-        HL_hexbin(0.1111111, 0.288675, 0.500000, &x, &y);
-        ok(x == 3, "center bin X %d == 3", x);
-        ok(y == -5, "center bin Y %d == -5", y);
-
-        HL_hexbin(0.1111111, 0.866025, 0.500000, &x, &y);
-        ok(x == 9, "vertex bin X %d == 9", x);
-        ok(y == -5, "vertex bin Y %d == -5", y);
+       double px, py;
+       struct HL_hex h;
+
+       plan(8);
+
+       px = 0.444194; py = -4.639363;
+       h = HL_hexbin(1.0, px, py);
+       is_int(1, h.x, "hexbin x %f, %f", px, py);
+       is_int(4, h.y, "hexbin x %f, %f", px, py);
+
+       px = 0.0; py = 0.0;
+       h = HL_hexbin(1.0, px, py);
+       is_int(0, h.x, "hexbin x %f, %f", px, py);
+       is_int(0, h.y, "hexbin x %f, %f", px, py);
+
+       px = 0.288675; py = 0.5;
+       h = HL_hexbin(0.111111, px, py);
+       is_int(3, h.x, "center hexbin x %f, %f", px, py);
+       is_int(-5, h.y, "center hexbin x %f, %f", px, py);
+
+       px = 0.866025; py = 0.5;
+       h = HL_hexbin(0.1111111, px, py);
+       is_int(9, h.x, "vertex hexbin x %f, %f", px, py);
+       is_int(-5, h.y, "vertex hexbin y %f, %f", px, py);
 
        return 0;
 }