mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-08-03 23:36:59 -04:00
Use Ogre::Math::PI
This commit is contained in:
parent
5960d3f1d9
commit
c24e08dff6
@ -1,10 +1,5 @@
|
|||||||
#include "worldimp.hpp"
|
#include "worldimp.hpp"
|
||||||
|
|
||||||
#ifdef _WIN32 // For M_PI
|
|
||||||
#define _USE_MATH_DEFINES
|
|
||||||
#include <cmath>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <boost/tr1/tr1/unordered_map>
|
#include <boost/tr1/tr1/unordered_map>
|
||||||
#elif defined HAVE_UNORDERED_MAP
|
#elif defined HAVE_UNORDERED_MAP
|
||||||
@ -67,9 +62,9 @@ namespace
|
|||||||
void wrap(float& rad)
|
void wrap(float& rad)
|
||||||
{
|
{
|
||||||
if (rad>0)
|
if (rad>0)
|
||||||
rad = std::fmod(rad+M_PI, 2.0*M_PI)-M_PI;
|
rad = std::fmod(rad+Ogre::Math::PI, 2.0f*Ogre::Math::PI)-Ogre::Math::PI;
|
||||||
else
|
else
|
||||||
rad = std::fmod(rad-M_PI, 2.0*M_PI)+M_PI;
|
rad = std::fmod(rad-Ogre::Math::PI, 2.0f*Ogre::Math::PI)+Ogre::Math::PI;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user