aboutsummaryrefslogtreecommitdiff
path: root/source/defines.h
blob: e819f88ff08a2797e4d4ac69dfd15f4bca0c5e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//#include <m_pd.h>
#include "m_imp.h"
#include <math.h>
#define MAXFLOAT  1e18f;
#define LOGTEN 2.302585092994

/* NT and OSX don't appear to have single-precision ANSI math */
#if defined(WIN32) || defined(MACOSX)
#define sinf sin
#define cosf cos
#define atanf atan
#define atan2f atan2
#define sqrtf sqrt
#define logf log
#define expf exp
#define fabsf fabs
#define powf pow
#endif