Server/Spectrum/ScalingStrategy.cs
author StephaneLenclud
Sun, 15 Jan 2017 18:49:06 +0100
changeset 279 10f0de70b69b
permissions -rw-r--r--
Ground work for display layout support.
StephaneLenclud@273
     1
namespace Visualization
StephaneLenclud@273
     2
{
StephaneLenclud@273
     3
    public enum ScalingStrategy
StephaneLenclud@273
     4
    {
StephaneLenclud@273
     5
        Decibel,
StephaneLenclud@273
     6
        Linear,
StephaneLenclud@273
     7
        Sqrt
StephaneLenclud@273
     8
    }
StephaneLenclud@273
     9
}