diff options
| author | Jacob Palecki <[email protected]> | 2020-08-12 19:22:21 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-08-12 19:22:21 -0700 |
| commit | cc531c79f2bd664551071ef315a54814bd9ab914 (patch) | |
| tree | e6d1db3477e8ba41299d1d92eac4748a648c960b | |
| parent | Add ability to have x\y graphs (diff) | |
| download | rawaccel-cc531c79f2bd664551071ef315a54814bd9ab914.tar.xz rawaccel-cc531c79f2bd664551071ef315a54814bd9ab914.zip | |
Reorganized solution into directories
| -rw-r--r-- | grapher/Models/AccelGUI.cs (renamed from grapher/AccelGUI.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Charts/AccelCharts.cs (renamed from grapher/AccelCharts.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs (renamed from grapher/ChartXY.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Fields/Field.cs (renamed from grapher/Field.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Fields/FieldXY.cs (renamed from grapher/FieldXY.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Options/AccelOptions.cs (renamed from grapher/AccelOptions.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Options/CapOptions.cs (renamed from grapher/CapOptions.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Options/Option.cs (renamed from grapher/Option.cs) | 0 | ||||
| -rw-r--r-- | grapher/Models/Options/OptionXY.cs (renamed from grapher/OptionXY.cs) | 0 | ||||
| -rw-r--r-- | grapher/VectorXY.cs | 33 | ||||
| -rw-r--r-- | grapher/grapher.csproj | 19 |
11 files changed, 9 insertions, 43 deletions
diff --git a/grapher/AccelGUI.cs b/grapher/Models/AccelGUI.cs index 54564b3..54564b3 100644 --- a/grapher/AccelGUI.cs +++ b/grapher/Models/AccelGUI.cs diff --git a/grapher/AccelCharts.cs b/grapher/Models/Charts/AccelCharts.cs index 9952016..9952016 100644 --- a/grapher/AccelCharts.cs +++ b/grapher/Models/Charts/AccelCharts.cs diff --git a/grapher/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index 4bb1bd5..4bb1bd5 100644 --- a/grapher/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs diff --git a/grapher/Field.cs b/grapher/Models/Fields/Field.cs index 8d75172..8d75172 100644 --- a/grapher/Field.cs +++ b/grapher/Models/Fields/Field.cs diff --git a/grapher/FieldXY.cs b/grapher/Models/Fields/FieldXY.cs index 87e0b9c..87e0b9c 100644 --- a/grapher/FieldXY.cs +++ b/grapher/Models/Fields/FieldXY.cs diff --git a/grapher/AccelOptions.cs b/grapher/Models/Options/AccelOptions.cs index b233552..b233552 100644 --- a/grapher/AccelOptions.cs +++ b/grapher/Models/Options/AccelOptions.cs diff --git a/grapher/CapOptions.cs b/grapher/Models/Options/CapOptions.cs index 2ee7f6b..2ee7f6b 100644 --- a/grapher/CapOptions.cs +++ b/grapher/Models/Options/CapOptions.cs diff --git a/grapher/Option.cs b/grapher/Models/Options/Option.cs index eb5105e..eb5105e 100644 --- a/grapher/Option.cs +++ b/grapher/Models/Options/Option.cs diff --git a/grapher/OptionXY.cs b/grapher/Models/Options/OptionXY.cs index ca1559d..ca1559d 100644 --- a/grapher/OptionXY.cs +++ b/grapher/Models/Options/OptionXY.cs diff --git a/grapher/VectorXY.cs b/grapher/VectorXY.cs deleted file mode 100644 index 53c9e68..0000000 --- a/grapher/VectorXY.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace grapher -{ - public class VectorXY - { - public VectorXY(double x) - { - X = x; - Y = x; - } - - public VectorXY(double x, double y) - { - X = x; - Y = y; - } - - public double X { get; set; } - - public double Y { get; set; } - - public void SetBoth(double value) - { - X = value; - Y = value; - } - } -} diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index 2cce072..fe29bfd 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -47,13 +47,13 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> - <Compile Include="AccelCharts.cs" /> - <Compile Include="AccelGUI.cs" /> - <Compile Include="AccelOptions.cs" /> - <Compile Include="CapOptions.cs" /> - <Compile Include="ChartXY.cs" /> - <Compile Include="Field.cs" /> - <Compile Include="FieldXY.cs" /> + <Compile Include="Models\Charts\AccelCharts.cs" /> + <Compile Include="Models\AccelGUI.cs" /> + <Compile Include="Models\Options\AccelOptions.cs" /> + <Compile Include="Models\Options\CapOptions.cs" /> + <Compile Include="Models\Charts\ChartXY.cs" /> + <Compile Include="Models\Fields\Field.cs" /> + <Compile Include="Models\Fields\FieldXY.cs" /> <Compile Include="Form1.cs"> <SubType>Form</SubType> </Compile> @@ -69,11 +69,10 @@ <Compile Include="Layouts\OffLayout.cs" /> <Compile Include="Layouts\PowerLayout.cs" /> <Compile Include="Layouts\SigmoidLayout.cs" /> - <Compile Include="Option.cs" /> - <Compile Include="OptionXY.cs" /> + <Compile Include="Models\Options\Option.cs" /> + <Compile Include="Models\Options\OptionXY.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="VectorXY.cs" /> <EmbeddedResource Include="Form1.resx"> <DependentUpon>Form1.cs</DependentUpon> </EmbeddedResource> |