From 62b4a3ededd237f4b4850d91c052585e2f687499 Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 2 Jun 2024 21:46:07 +1000 Subject: Switched to luigi, parsing out FLAC metadata. --- rect.h | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 rect.h (limited to 'rect.h') diff --git a/rect.h b/rect.h deleted file mode 100644 index 4d6a88f..0000000 --- a/rect.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef rect_h -#define rect_h - -typedef struct { - int x, y, w, h; -} Rectangle; - -Rectangle make_rect(int x, int y, int w, int h); - -int rects_overlap(const Rectangle* a, const Rectangle* b); -int rects_overlap2( - int x0, - int y0, - int w0, - int h0, - int x1, - int y1, - int w1, - int h1 -); -int point_rect_overlap( - const Rectangle* r, - int px, - int py -); -int point_rect_overlap2( - int x, - int y, - int w, - int h, - int px, - int py -); -Rectangle rect_intersect( - const Rectangle* a, - const Rectangle* b -); -Rectangle* rect_merge( - Rectangle* d, - const Rectangle* r -); - -#endif -- cgit v1.2.3-54-g00ecf