diff options
| author | a1xd <[email protected]> | 2021-09-18 05:20:53 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:36:18 -0400 |
| commit | 115030165d539fde5440f6232879c7a076dea2ec (patch) | |
| tree | 89f50a3f38b6b9052fa5085e36a2d00577805e43 /grapher/Form1.cs | |
| parent | Add power start from one (diff) | |
| download | rawaccel-115030165d539fde5440f6232879c7a076dea2ec.tar.xz rawaccel-115030165d539fde5440f6232879c7a076dea2ec.zip | |
generalize power start-from-1
starting output is determined by (gain) offset
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs index 9e88912..00483d5 100644 --- a/grapher/Form1.cs +++ b/grapher/Form1.cs @@ -82,8 +82,10 @@ namespace grapher inCapBoxYPower, outCapBoxXPower, outCapBoxYPower, - offsetBoxX, - offsetBoxY, + inputOffsetBoxX, + inputOffsetBoxY, + outputOffsetBoxX, + outputOffsetBoxY, accelerationBoxX, accelerationBoxY, decayRateBoxX, @@ -114,10 +116,6 @@ namespace grapher ByComponentCheckBox, gainSwitchX, gainSwitchY, - powerStartsFromZeroBoxX, - powerStartsFromOneBoxX, - powerStartsFromZeroBoxY, - powerStartsFromOneBoxY, XLutActiveValuesBox, YLutActiveValuesBox, XLutPointsBox, @@ -138,8 +136,10 @@ namespace grapher outCapLabelYPower, CapTypeLabelXPower, CapTypeLabelYPower, - offsetLabelX, - offsetLabelY, + inputOffsetLabelX, + inputOffsetLabelY, + outputOffsetLabelX, + outputOffsetLabelY, constantOneLabelX, constantOneLabelY, decayRateLabelX, @@ -156,8 +156,6 @@ namespace grapher powerLabelY, expLabelX, expLabelY, - powerStartFromLabelX, - powerStartFromLabelY, LUTTextLabelX, LUTTextLabelY, constantThreeLabelX, @@ -179,8 +177,10 @@ namespace grapher OutCapActiveYLabelPower, CapTypeActiveXLabelPower, CapTypeActiveYLabelPower, - OffsetActiveXLabel, - OffsetActiveYLabel, + InputOffsetActiveXLabel, + InputOffsetActiveYLabel, + OutputOffsetActiveXLabel, + OutputOffsetActiveYLabel, AccelerationActiveLabelX, AccelerationActiveLabelY, DecayRateActiveXLabel, @@ -197,8 +197,6 @@ namespace grapher PowerClassicActiveYLabel, ExpActiveXLabel, ExpActiveYLabel, - powerStartFromActiveLabelX, - powerStartFromActiveLabelY, MidpointActiveXLabel, MidpointActiveYLabel, AccelTypeActiveLabelX, |