single pitch stiff string equation simulation

This commit is contained in:
2026-06-20 16:08:39 -05:00
parent a5af4f6283
commit b4df8657dd
7 changed files with 207 additions and 27 deletions

View File

@@ -4,6 +4,7 @@
#include <stdint.h>
#include "Instrument.hpp"
#include "Instruments/PianoString.hpp"
// a voice is a tone generator that the synth uses for polyphony
// the synth mixes multiple voices together into a polyphonic audio. calculations for samples are handled in the instrument
@@ -37,6 +38,6 @@ private:
ConfigService* config_;
LoggerService* logger_;
Instrument instrument_;
PianoString instrument_;
};