summaryrefslogtreecommitdiff
path: root/grapher/Models/Charts/ChartState/ChartStateManager.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-01-18 17:39:10 -0800
committerJacob Palecki <[email protected]>2021-01-18 17:39:10 -0800
commit8c55ca08881b59943bc9dda193107cc8a117cf69 (patch)
tree8c8ea7956a69c058d1829250a189b250b2659e7b /grapher/Models/Charts/ChartState/ChartStateManager.cs
parentFix xy anisotropy combining in gui (diff)
downloadrawaccel-8c55ca08881b59943bc9dda193107cc8a117cf69.tar.xz
rawaccel-8c55ca08881b59943bc9dda193107cc8a117cf69.zip
Refactor for new graph calculation method
Diffstat (limited to 'grapher/Models/Charts/ChartState/ChartStateManager.cs')
-rw-r--r--grapher/Models/Charts/ChartState/ChartStateManager.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/grapher/Models/Charts/ChartState/ChartStateManager.cs b/grapher/Models/Charts/ChartState/ChartStateManager.cs
index ff4fe54..9ed54e1 100644
--- a/grapher/Models/Charts/ChartState/ChartStateManager.cs
+++ b/grapher/Models/Charts/ChartState/ChartStateManager.cs
@@ -14,21 +14,24 @@ namespace grapher.Models.Charts.ChartState
ChartXY sensitivityChart,
ChartXY velocityChart,
ChartXY gainChat,
- AccelData accelData,
- AccelCalculator accelCalculator)
+ AccelCalculator accelCalculator,
+ EstimatedPoints combined,
+ EstimatedPoints xPoints,
+ EstimatedPoints yPoints)
{
CombinedState = new CombinedState(
sensitivityChart,
velocityChart,
gainChat,
- accelData,
+ combined,
accelCalculator);
XYOneGraphState = new XYOneGraphState(
sensitivityChart,
velocityChart,
gainChat,
- accelData,
+ xPoints,
+ yPoints,
accelCalculator);
XYTwoGraphState = new XYTwoGraphState(