|
DampingReverseLinear Method
|
Produces a reverse linear damping curve - damping with a perfect slope from 0 to 1 over the samplePeriod.
Namespace: GSF.Media.MusicAssembly: GSF.Media (in GSF.Media.dll) Version: 2.4.207-beta
Syntax public static double ReverseLinear(
long sampleIndex,
long samplePeriod,
int sampleRate
)
Public Shared Function ReverseLinear (
sampleIndex As Long,
samplePeriod As Long,
sampleRate As Integer
) As Double
static member ReverseLinear :
sampleIndex : int64 *
samplePeriod : int64 *
sampleRate : int -> float
GSF.Media.Music.Damping.ReverseLinear = function(sampleIndex, samplePeriod, sampleRate);
View SourceParameters
- sampleIndex Int64
- Sample index (0 to samplePeriod - 1).
- samplePeriod Int64
- Total period, in whole samples per second (i.e., seconds of time * sampleRate), over which to perform damping.
- sampleRate Int32
- Number of samples per second, if useful for calculation.
Return Value
DoubleScaling factor used to damp an amplitude at the given time.
Remarks This is just used for an interesting note effect.
See Also