Skip to content

Commit bbbbff5

Browse files
committed
Doxygen comment for FastSineGenerator
1 parent 181311b commit bbbbff5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/AudioEffects/SoundGenerator.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,12 @@ float sine(float t) {
268268
return (p - 6.283211f * pp * p + 9.132843f * pp * pp * p) * -6.221086f;
269269
}
270270

271+
/**
272+
* @brief Sine wave which is based on a fast approximation function.
273+
* @author Vivian Leigh Stewart
274+
* @copyright GPLv3
275+
* @tparam T
276+
*/
271277
template <class T>
272278
class FastSineGenerator : public SineWaveGenerator<T> {
273279
public:

0 commit comments

Comments
 (0)