AudioSynthesis.Synthesis.Synthesizer.GetChannelExpression C# (CSharp) Method

GetChannelExpression() public method

public GetChannelExpression ( int channel ) : float
channel int
return float
        public float GetChannelExpression(int channel) { return synthChannels[channel].expression.Combined / 16383f; }
        public float GetChannelPan(int channel) { return (synthChannels[channel].pan.Combined - 8192.0f) / 8192f; }