From 10f9fd02f78e6818b0b157d14b348fd36682fedb Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 16 Feb 2024 00:44:13 -0300 Subject: finalizado, tem que melhorar a performance --- utils.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 utils.h (limited to 'utils.h') diff --git a/utils.h b/utils.h new file mode 100644 index 0000000..a014916 --- /dev/null +++ b/utils.h @@ -0,0 +1,17 @@ +#ifndef _UTILS +#define _UTILS +#include +typedef struct _Point3d{ + double x, y, z; +}point3d; + +typedef struct _Point2d{ + double x, y; +}point2d; + +typedef struct _Display{ + point3d p; + Color c; +}display; + +#endif -- cgit v1.2.3