reflex2q3/ReflexToQ3/ckmath/ckmath_constants.h

17 lines
451 B
C
Raw Normal View History

2015-02-02 08:11:03 +05:30
//
// Author: Michael Cameron
// Email: chronokun@hotmail.com
//
#pragma once
#ifndef __MATH_CONSTANTS_H__
#define __MATH_CONSTANTS_H__
// Math
static const double s_kdTau = 6.2831853071795864769252867665590057683943387987502116;
static const double s_kdPi = 3.1415926535897932384626433832795028841971693993751058;
static const float s_kfTau = static_cast<const float>(s_kdTau);
static const float s_kfPi = static_cast<const float>(s_kdPi);
#endif