summaryrefslogtreecommitdiff
path: root/donut.h
diff options
context:
space:
mode:
Diffstat (limited to 'donut.h')
-rw-r--r--donut.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/donut.h b/donut.h
index e4e0519..68ab552 100644
--- a/donut.h
+++ b/donut.h
@@ -4,19 +4,14 @@
#include <raylib.h>
#include <stdio.h>
#include <math.h>
+#include "utils.h"
+#include "myqsort.h"
#define MAX(a,b) ((a)>(b)?(a):(b))
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 640
-typedef struct _Point3d{
- double x, y, z;
-}point3d;
-
-typedef struct _Point2d{
- double x, y;
-}point2d;
void debug_printp2(point2d p);