mirror of
https://github.com/DarthAffe/KeyboardAudioVisualizer.git
synced 2025-12-12 23:28:30 +00:00
14 lines
347 B
C#
14 lines
347 B
C#
using System.Collections.Generic;
|
|
|
|
namespace KeyboardAudioVisualizer.AudioProcessing.Spectrum
|
|
{
|
|
public interface ISpectrum : IEnumerable<Band>
|
|
{
|
|
int BandCount { get; }
|
|
|
|
Band this[int index] { get; }
|
|
Band this[float frequency] { get; }
|
|
Band[] this[float minFrequency, float maxFrequency] { get; }
|
|
}
|
|
}
|