Skip to content

Commit b2eed1c

Browse files
committed
remove old comments
1 parent b7c8815 commit b2eed1c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/Spectrogram/Spectrogram.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,14 +234,12 @@ public Bitmap GetVerticalScale(int width, int offsetHz = 0, int tickSize = 3, in
234234

235235
public int PixelY(double frequency, int reduction = 1)
236236
{
237-
// TODO: tick generation should use this method
238237
int pixelsFromZeroHz = (int)(settings.PxPerHz * frequency / reduction);
239238
int pixelsFromMinFreq = pixelsFromZeroHz - settings.FftIndex1 / reduction + 1;
240239
int pixelRow = settings.Height / reduction - 1 - pixelsFromMinFreq;
241240
return pixelRow - 1;
242241
}
243242

244-
// provide access to the raw FFT data
245243
public List<double[]> GetFFTs()
246244
{
247245
return ffts;

0 commit comments

Comments
 (0)