1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

math.h -> cmath

This commit is contained in:
Darryl Pogue
2013-01-28 23:23:07 -08:00
parent b01aab4a39
commit 29bc092cff
21 changed files with 24 additions and 24 deletions

View File

@ -42,7 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "HeadSpin.h"
#include "plAvg.h"
#include <math.h>
#include <cmath>
template class TimeBasedAvgRing<float>;
template class TimeBasedAvgRing<double>;

View File

@ -42,7 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "HeadSpin.h"
#include "hsGeometry3.h"
#include <math.h>
#include <cmath>
#include "plTriUtils.h"
static const float kAlmostZero = 1.e-5f;
@ -328,4 +328,4 @@ bool plTriUtils::ProjectOntoPlaneAlongVector(const hsPoint3& p0, const hsPoint3&
float dist = norm.InnerProduct(p0 - p);
return ProjectOntoPlaneAlongVector(norm, dist, vec, p);
}
}