All Classes Namespaces Files Functions Variables Enumerations Enumerator
libs/system/c/math_utils.h
Go to the documentation of this file.
00001 #ifndef QRK_C_MATH_UTILS_H
00002 #define QRK_C_MATH_UTILS_H
00003 
00013 #include "detect_os.h"
00014 #if defined(WINDOWS_OS)
00015 #define _USE_MATH_DEFINES
00016 #endif
00017 #include <math.h>
00018 
00019 #ifndef M_PI
00020 /* Visual C++ 6.0 用 */
00021 #define M_PI 3.14159265358979323846
00022 #endif
00023 
00024 #endif /* !QRK_C_MATH_UTILS_H */