mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-13 08:06:32 +01:00
17 lines
446 B
C
17 lines
446 B
C
#ifndef SBSMS_DEFS_H
|
|
#define SBSMS_DEFS_H
|
|
|
|
#ifdef SBSMS_REAL_FLOAT
|
|
#define ONEOVERPI 0.31830988618379f
|
|
#define ONEOVERTWOPI 0.15915494309190f
|
|
#define PI 3.14159265358979323846264338327950288f
|
|
#define TWOPI 6.28318530717958647692528676655900576f
|
|
#else
|
|
#define ONEOVERPI 0.31830988618379
|
|
#define ONEOVERTWOPI 0.15915494309190
|
|
#define PI 3.14159265358979323846264338327950288
|
|
#define TWOPI 6.28318530717958647692528676655900576
|
|
#endif
|
|
|
|
#endif
|