Initial import

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/fast_trig@1 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2014-07-19 07:44:42 +00:00
commit 952e57ec42
2 changed files with 188 additions and 0 deletions
Executable
+31
View File
@@ -0,0 +1,31 @@
// --------------------------------------------------------------
#ifndef _FAST_TRIG_H_
#define _FAST_TRIG_H_
#include "synth_types.h"
// --------------------------------------------------------------
// Types
// --------------------------------------------------------------
// --------------------------------------------------------------
#if defined(__cplusplus)
extern "C" {
#endif
// --------------------------------------------------------------
// Exported functions
// --------------------------------------------------------------
synth_float_t FastTrig_cos_premult_pi(synth_float_t x);
synth_float_t FastTrig_sin(synth_float_t x);
synth_float_t FastTrig_cos(synth_float_t x);
synth_float_t FastTrig_exp(synth_float_t x);
synth_float_t FastTrig_exp_minus_1(synth_float_t x);
#if defined(__cplusplus)
}
#endif
// --------------------------------------------------------------
#endif // _FAST_TRIG_H_