Additional frequency indicators when zoomed in

This commit is contained in:
Charles J. Cliffe 2015-03-01 19:56:02 -05:00
parent 9e53d25394
commit 54b10b232e
1 changed files with 8 additions and 1 deletions

View File

@ -107,7 +107,14 @@ void SpectrumContext::Draw(std::vector<float> &points, long long freq, int bandw
long long firstMhz = (leftFreq / 1000000) * 1000000;
long double mhzStart = ((long double) (firstMhz - leftFreq) / (long double) (rightFreq - leftFreq)) * 2.0;
long double mhzStep = (100000.0 / (long double) (rightFreq - leftFreq)) * 2.0;
float mhzVisualStep = 0.1f;
if (mhzStep * 0.5 * viewWidth > 400) {
mhzStep = (10000.0 / (long double) (rightFreq - leftFreq)) * 2.0;
mhzVisualStep = 0.01f;
}
long double currentMhz = trunc(floor(firstMhz / 1000000.0));
@ -144,7 +151,7 @@ void SpectrumContext::Draw(std::vector<float> &points, long long freq, int bandw
label.str(std::string());
currentMhz += 0.1f;
currentMhz += mhzVisualStep;
}
glLineWidth(1.0);