#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