diff options
| author | Jacob Palecki <[email protected]> | 2020-07-30 02:00:20 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-30 02:00:20 -0700 |
| commit | f315e8160e984df93be6667929db34749aa25cfa (patch) | |
| tree | 19684a4f515fc6185e750d7cca3424fa7d96937b /grapher/grapher.csproj | |
| parent | Fully use acceloptions (diff) | |
| download | rawaccel-f315e8160e984df93be6667929db34749aa25cfa.tar.xz rawaccel-f315e8160e984df93be6667929db34749aa25cfa.zip | |
Use class heirarchy for layout types
Diffstat (limited to 'grapher/grapher.csproj')
| -rw-r--r-- | grapher/grapher.csproj | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index 3d0f50a..91518ce 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -56,6 +56,14 @@ <Compile Include="Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> + <Compile Include="Layouts\ClassicLayout.cs" /> + <Compile Include="Layouts\DefaultLayout.cs" /> + <Compile Include="Layouts\LayoutBase.cs" /> + <Compile Include="Layouts\LinearLayout.cs" /> + <Compile Include="Layouts\LogLayout.cs" /> + <Compile Include="Layouts\NaturalLayout.cs" /> + <Compile Include="Layouts\PowerLayout.cs" /> + <Compile Include="Layouts\SigmoidLayout.cs" /> <Compile Include="Option.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> |