Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace std

#ifndef INLINE
float atan2f(float y, float x);
float powf(float x, float y);
float atan(float x);
float sinf(float x);
float cosf(float x);
Expand All @@ -26,6 +27,11 @@ namespace std
return (float)atan2((double)y, (double)x);
}

inline float powf(float y, float x)
{
return (float)powf((double)y, (double)x);
}

inline float atan(float x)
{
return (float)atan((double)x);
Expand Down
Loading
Loading