music-field/include/type.hpp

57 lines
1.3 KiB
C++
Raw Normal View History

2018-12-25 13:41:30 +00:00
#ifndef type_h
#define type_h
/*********************************************************************
*
*使
*
*********************************************************************/
//C++标准库
2018-12-25 13:41:30 +00:00
#include <iostream>
#include <stdint.h>
#include <cmath>
#include <time.h>
//苹果操作系统
2018-12-25 13:41:30 +00:00
#ifdef __APPLE__
#include <OpenGL/OpenGL.h>
#include <GLUT/GLUT.h>
#include <sys/time.h>
#include <unistd.h>
#define _CRT_SECURE_NO_WARNINGS
#endif
//Windows操作系统
#ifdef WIN32
#include <Windows.h>
#include <glut.h>
#pragma warning(disable:4996)
2018-12-25 13:41:30 +00:00
#endif
//容器类头文件包含
2018-12-25 13:41:30 +00:00
#include <vector>
#include <list>
#include <map>
/*********************************************************************
*
*
*
*********************************************************************/
2018-12-27 02:11:06 +00:00
//计算函数执行时间间隔
#define DRAW_TIMER 1
//绘图函数执行时间间隔
#define FRESH_TIMER 20
/*********************************************************************
*
*使
*
*********************************************************************/
2018-12-27 02:11:06 +00:00
typedef std::pair<double, double> Size;
typedef std::pair<double, double> Point;
typedef std::vector<double> Point3;
typedef std::vector<double> RawColor;
2018-12-25 13:41:30 +00:00
#endif /* type_h */