-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1855 from John3/updateRecast151
Updated recast to 1.5.1
- Loading branch information
Showing
55 changed files
with
3,255 additions
and
1,438 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
@defgroup detour Detour | ||
Members in this module are wrappers around the standard math library | ||
*/ | ||
|
||
#ifndef DETOURMATH_H | ||
#define DETOURMATH_H | ||
|
||
#include <math.h> | ||
|
||
inline float dtMathFabsf(float x) { return fabsf(x); } | ||
inline float dtMathSqrtf(float x) { return sqrtf(x); } | ||
inline float dtMathFloorf(float x) { return floorf(x); } | ||
inline float dtMathCeilf(float x) { return ceilf(x); } | ||
inline float dtMathCosf(float x) { return cosf(x); } | ||
inline float dtMathSinf(float x) { return sinf(x); } | ||
inline float dtMathAtan2f(float y, float x) { return atan2f(y, x); } | ||
|
||
#endif |
Oops, something went wrong.