diff options
| author | JacobPalecki <[email protected]> | 2021-01-20 20:13:33 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-20 20:13:33 -0800 |
| commit | 5b6479013c8f35df933dd57c680063f4db1e4028 (patch) | |
| tree | 60dd7c67a0f163457da2519b42553382a39a591b /grapher/grapher.csproj | |
| parent | show custom dialog on bad input (#63) (diff) | |
| parent | Guard against bad anisotropy args (diff) | |
| download | rawaccel-5b6479013c8f35df933dd57c680063f4db1e4028.tar.xz rawaccel-5b6479013c8f35df933dd57c680063f4db1e4028.zip | |
Merge pull request #65 from JacobPalecki/Directional
Directionality Features + Graph Fidelity
Diffstat (limited to 'grapher/grapher.csproj')
| -rw-r--r-- | grapher/grapher.csproj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index 35d7e0c..8673325 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -90,7 +90,10 @@ <Compile Include="Models\AccelGUIFactory.cs" /> <Compile Include="Models\Calculations\AccelCalculator.cs" /> <Compile Include="Models\Calculations\AccelChartData.cs" /> - <Compile Include="Models\Calculations\AccelData.cs" /> + <Compile Include="Models\Calculations\Data\AccelDataCombined.cs" /> + <Compile Include="Models\Calculations\Data\AccelDataXYComponential.cs" /> + <Compile Include="Models\Calculations\Data\AccelDataXYDirectional.cs" /> + <Compile Include="Models\Calculations\Data\IAccelData.cs" /> <Compile Include="Models\Charts\AccelCharts.cs" /> <Compile Include="Models\AccelGUI.cs" /> <Compile Include="Models\Charts\ChartState\ChartState.cs" /> @@ -126,6 +129,7 @@ <Compile Include="Layouts\NaturalLayout.cs" /> <Compile Include="Layouts\OffLayout.cs" /> <Compile Include="Layouts\PowerLayout.cs" /> + <Compile Include="Models\Options\Directionality\DirectionalityOptions.cs" /> <Compile Include="Models\Options\IOption.cs" /> <Compile Include="Models\Options\OffsetOptions.cs" /> <Compile Include="Models\Options\Option.cs" /> |