Rev 2097 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/*
* sine.h
* DIN Is Noise is copyright (c) 2006-2025 Jagannathan Sampath
* For more information, please visit http://dinisnoise.org/
*/
#ifndef __SINE
#define __SINE
#include <math.h>
#include "funktion.h"
struct sine : funktion {
float operator() (float a, float ea) {
return sin (a);
}
};
#endif