From 68ee8eba9c3834604d220f4bf56e7e9d506a77a7 Mon Sep 17 00:00:00 2001 From: mick grierson Date: Sun, 26 Jul 2015 23:57:38 +0100 Subject: Some initial changes that are long overdue part 1 --- maximilian_examples/20.additive.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 maximilian_examples/20.additive.cpp (limited to 'maximilian_examples/20.additive.cpp') diff --git a/maximilian_examples/20.additive.cpp b/maximilian_examples/20.additive.cpp deleted file mode 100644 index 753434d..0000000 --- a/maximilian_examples/20.additive.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "maximilian.h" - -maxiOsc sineBank[10];//let's create an oscillator and give it a name. - -void setup() {//some inits - //nothing to go here this time -} - - - -void play(double *output) {//this is where the magic happens. Very slow magic. - - double wave=0; - double f0 = 100; - for(int i=0; i < 10; i++) { - double thisSine = wave + sineBank[i].sinewave(f0 + (i * f0)); - double multiplier = 1.0 / (i+1.0); - thisSine = thisSine * multiplier; - wave = wave + thisSine; - } - wave *= 0.1; - *output = wave;//simple as that! - - -} - -- cgit v1.3