diff options
Diffstat (limited to 'donut.h')
| -rw-r--r-- | donut.h | 9 | 
1 files changed, 2 insertions, 7 deletions
@@ -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);  | 
