You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef SINEOSC_H_
|
|
#define SINEOSC_H_
|
|
|
|
struct SineOsc {
|
|
float a, s0, s1;
|
|
};
|
|
|
|
void sine_osc_init(struct SineOsc *osc);
|
|
void sine_osc_set_freq(struct SineOsc *osc, float freq);
|
|
float sine_osc_sample(struct SineOsc *osc);
|
|
|
|
#endif /* SINEOSC_H_ */
|