#ifndef type_h #define type_h /********************************************************************* * *需要使用的库头文件的包含 * *********************************************************************/ //C++标准库 #include #include #include #include //苹果操作系统 #ifdef __APPLE__ #include #include #include #include #define _CRT_SECURE_NO_WARNINGS #endif //Windows操作系统 #ifdef WIN32 #include #include #pragma warning(disable:4996) #endif //容器类头文件包含 #include #include #include /********************************************************************* * *编译相关常量的定义 * *********************************************************************/ //计算函数执行时间间隔 #define DRAW_TIMER 1 //绘图函数执行时间间隔 #define FRESH_TIMER 20 /********************************************************************* * *需要使用的自定义变量 * *********************************************************************/ typedef std::pair Size; typedef std::pair Point; typedef std::vector Point3; typedef std::vector RawColor; #endif /* type_h */