Removed math.h dependancy from Recast.h, moved sqrtf to Recast.cpp.

This commit is contained in:
Mikko Mononen
2010-07-09 08:45:58 +00:00
parent 5d91c09e00
commit fb369a2efd
2 changed files with 8 additions and 3 deletions

View File

@@ -26,6 +26,10 @@
#include "RecastLog.h"
#include "RecastTimer.h"
float rcSqrt(float x)
{
return sqrtf(x);
}
void rcIntArray::resize(int n)
{