they did the Dance

and now you can do it too
This commit is contained in:
tildearrow 2023-11-26 21:55:09 -05:00
parent 35316910be
commit 2d73e45e0f
4 changed files with 23 additions and 3 deletions

View file

@ -2130,7 +2130,7 @@ class FurnaceGUI {
// per-channel oscilloscope
int chanOscCols, chanOscAutoColsType, chanOscColorX, chanOscColorY;
float chanOscWindowSize, chanOscTextX, chanOscTextY, chanOscAmplify;
bool chanOscWaveCorr, chanOscOptions, updateChanOscGradTex, chanOscUseGrad, chanOscNormalize;
bool chanOscWaveCorr, chanOscOptions, updateChanOscGradTex, chanOscUseGrad, chanOscNormalize, chanOscRandomPhase;
String chanOscTextFormat;
ImVec4 chanOscColor, chanOscTextColor;
Gradient2D chanOscGrad;
@ -2151,7 +2151,7 @@ class FurnaceGUI {
double inBufPosFrac;
double waveLen;
int waveLenBottom, waveLenTop, relatedCh;
float pitch, windowSize;
float pitch, windowSize, phaseOff;
unsigned short needle;
bool ready, loudEnough, waveCorr;
fftw_plan plan;
@ -2169,6 +2169,7 @@ class FurnaceGUI {
relatedCh(0),
pitch(0.0f),
windowSize(1.0f),
phaseOff(0.0f),
needle(0),
ready(false),
loudEnough(false),