- refactored

This commit is contained in:
2025-08-03 10:57:01 +02:00
parent d801ce21e8
commit c0e651bf68
77 changed files with 78326 additions and 88 deletions
+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_