diff options
| author | Jacob Palecki <[email protected]> | 2021-04-06 23:11:20 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-06 23:11:20 -0700 |
| commit | 258fcd3bd236a787f07d7dac2049be524d86cb75 (patch) | |
| tree | 8a92d603c6c9db3e822b7cc09d2a88c485ebed3b /grapher/Layouts/NaturalLayout.cs | |
| parent | Rename accelMotivity to growthRate (diff) | |
| download | rawaccel-258fcd3bd236a787f07d7dac2049be524d86cb75.tar.xz rawaccel-258fcd3bd236a787f07d7dac2049be524d86cb75.zip | |
Fix natural legacy algorithm, rename accelNatural to decayRate
Diffstat (limited to 'grapher/Layouts/NaturalLayout.cs')
| -rw-r--r-- | grapher/Layouts/NaturalLayout.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Layouts/NaturalLayout.cs b/grapher/Layouts/NaturalLayout.cs index 9fc54fc..070a249 100644 --- a/grapher/Layouts/NaturalLayout.cs +++ b/grapher/Layouts/NaturalLayout.cs @@ -12,7 +12,7 @@ namespace grapher.Layouts LogarithmicCharts = false; GainSwitchOptionLayout = new OptionLayout(true, Gain); - AccelLayout = new OptionLayout(true, Acceleration); + AccelLayout = new OptionLayout(true, DecayRate); ScaleLayout = new OptionLayout(false, string.Empty); CapLayout = new OptionLayout(false, string.Empty); WeightLayout = new OptionLayout(true, Weight); |