00001 #pragma once 00002 00008 //======================================================================== 00009 // DLL define 00010 //======================================================================== 00011 #ifdef UQGL_EXPORTS 00012 # define DLL_EXPORT __declspec(dllexport) 00013 #else 00014 # define DLL_EXPORT __declspec(dllimport) 00015 #endif 00016 00017 //======================================================================== 00018 // namespace 00019 //======================================================================== 00023 namespace UQ{ 00024 } 00025 00026 //======================================================================== 00027 // const 00028 //======================================================================== 00029 namespace UQ{ 00030 static const float PI = 3.141592653589793238462643383279f; 00031 static const float PI2 = 6.283185307179586476925286766559f; 00032 }