Custom Waveform

This commit is contained in:
Takeshi Yokemura
2021-08-15 20:41:01 +09:00
parent 47cefdd0e8
commit 915f9eb5bf
20 changed files with 1099 additions and 44 deletions

18
Source/WaveformVoice.h Normal file
View File

@ -0,0 +1,18 @@
/*
==============================================================================
WaveformVoice.h
Created: 7 Jul 2021 5:57:30am
Author: SHACHO
==============================================================================
*/
#pragma once
#include "TonalVoice.h"
struct WaveformVoice : public TonalVoice
{
WaveformVoice(SettingRefs* sRefs);
float voltageForAngle(double angle) override;
};