全て データ構造 ファイル 関数 変数 型定義 列挙型 列挙型の値 マクロ定義
include/cpp/math_utilities.h
説明を見る。
00001 #ifndef QRK_MATH_UTILITIES_H
00002 #define QRK_MATH_UTILITIES_H
00003 
00016 #include "detect_os.h"
00017 #if defined(WINDOWS_OS)
00018 #define _USE_MATH_DEFINES
00019 #endif
00020 #include <math.h>
00021 
00022 
00023 #ifndef M_PI
00024 
00025 
00026 #define M_PI 3.14159265358979323846
00027 #endif
00028 
00029 #if defined(MSC)
00030 extern long lrint(double x);
00031 #endif
00032 
00033 #endif /* !QRK_MATH_UTILITIES_H */