Cleaned code

This commit is contained in:
2020-09-26 15:33:02 -04:00
parent b04fdf7f70
commit a351030fe4
4 changed files with 8 additions and 9 deletions

View File

@ -56,7 +56,6 @@ void VCODroplet::Draw() {
if(NeedUpdate()) {
wave->AdjustXShift(1);
}
//testWave->DrawTile(*Patch(), 0, GetTitleHeight(), 60, GetTitleHeight()+testH);
DrawName("VCO");
AnimationInc();
}

View File

@ -22,10 +22,7 @@ private:
std::string WaveToString(uint8_t);
void SetWaveState(uint8_t);
const double pi = std::acos(-1);
int sine_width = 21;
Wave* wave = new Wave(WaveShape::kTriangle, sine_width, GetTitleHeight());
int testH = 20;
//Wave* testWave = new Wave(WaveShape::kSaw, 30, testH);
Wave* wave = new Wave(WaveShape::kTriangle, 21, GetTitleHeight());
public:
VCODroplet(DaisyPatch*, DropletState, float);
~VCODroplet();