blob: a47414d21de8d7cf9b10be6888265b8fd2de01e0 (
plain)
1
2
3
4
5
6
7
8
|
float frequencyToIncrement( float samplingRate, float frequency,
int bufferLength );
void makeSineBuffer( float *buffer, int bufferLength );
float bufferOscil( float *phase, float increment, float *buffer,
int bufferLength );
|