Go to the documentation of this file. 19 #define roundf(in) (in >= 0.0f ? floorf(in + 0.5f) : ceilf(in - 0.5f)) 21 #define cos(x) ((double)cosf((float)x)) 22 #define pow(x, y) ((double)powf((float)x, (float)y)) 23 #define sin(x) ((double)sinf((float)x)) 24 #define ceil(x) ((double)ceilf((float)x)) 25 #define floor(x) ((double)floorf((float)x)) 26 #define sqrt(x) ((double)sqrtf((float)x)) 27 #define fabs(x) ((double)fabsf((float)(x))) 29 #define fmaxf(a, b) (((a) > (b)) ? (a) : (b)) 30 #define fminf(a, b) (((a) < (b)) ? (a) : (b)) 32 #define exp(a) ((double)expf((float)a)) 33 #define log(a) ((double)logf((float)a))