Server/Spectrum/ISpectrumProvider.cs
author StephaneLenclud
Fri, 06 Jan 2017 18:27:19 +0100
changeset 276 7cd495550d5f
permissions -rw-r--r--
Published v1.4.3
Major hack into our spectrum math to make it prettier.
StephaneLenclud@273
     1
namespace Visualization
StephaneLenclud@273
     2
{
StephaneLenclud@273
     3
    public interface ISpectrumProvider
StephaneLenclud@273
     4
    {
StephaneLenclud@273
     5
        bool GetFftData(float[] fftBuffer, object context);
StephaneLenclud@273
     6
        int GetFftBandIndex(float frequency);
StephaneLenclud@273
     7
    }
StephaneLenclud@273
     8
}