TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
DetourMath.h File Reference
#include <math.h>
+ Include dependency graph for DetourMath.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

float dtMathFabsf (float x)
 
float dtMathSqrtf (float x)
 
float dtMathFloorf (float x)
 
float dtMathCeilf (float x)
 
float dtMathCosf (float x)
 
float dtMathSinf (float x)
 
float dtMathAtan2f (float y, float x)
 

Function Documentation

float dtMathAtan2f ( float  y,
float  x 
)
inline
18 { return atan2f(y, x); }
G3D::int16 y
Definition: Vector2int16.h:38
G3D::int16 x
Definition: Vector2int16.h:37
float dtMathCeilf ( float  x)
inline
15 { return ceilf(x); }
G3D::int16 x
Definition: Vector2int16.h:37

+ Here is the caller graph for this function:

float dtMathCosf ( float  x)
inline
16 { return cosf(x); }
G3D::int16 x
Definition: Vector2int16.h:37
float dtMathFabsf ( float  x)
inline
12 { return fabsf(x); }
G3D::int16 x
Definition: Vector2int16.h:37
float dtMathFloorf ( float  x)
inline
14 { return floorf(x); }
G3D::int16 x
Definition: Vector2int16.h:37

+ Here is the caller graph for this function:

float dtMathSinf ( float  x)
inline
17 { return sinf(x); }
G3D::int16 x
Definition: Vector2int16.h:37
float dtMathSqrtf ( float  x)
inline
13 { return sqrtf(x); }
G3D::int16 x
Definition: Vector2int16.h:37

+ Here is the caller graph for this function: