mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-04 16:51:38 -05:00
Change variable name
This commit is contained in:
parent
db07e75d52
commit
0be43db5ae
1 changed files with 2 additions and 2 deletions
|
@ -43,9 +43,9 @@ namespace VoiDPlugins
|
|||
return (input * window) - sum;
|
||||
}
|
||||
|
||||
private static Vector2 ReverseEMAFunc(Vector2 currentMCMA, Vector2 lastMCMA, float weight)
|
||||
private static Vector2 ReverseEMAFunc(Vector2 currentEMA, Vector2 lastEMA, float weight)
|
||||
{
|
||||
return ((currentMCMA - lastMCMA) / weight) + lastMCMA;
|
||||
return ((currentEMA - lastEMA) / weight) + lastEMA;
|
||||
}
|
||||
|
||||
[BooleanProperty("Reverse MA", "Set to True if the tablet is using MA algorithm for smoothing/noise reduction")]
|
||||
|
|
Loading…
Add table
Reference in a new issue