-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
130 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/spectrality/DSP/QDFT.cs → src/Spectrality.Core/Analysis/QDFT.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NLog" Version="5.3.1" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pectrality/Extensions/BitmapExtensions.cs → ...ality.Plot/Extensions/BitmapExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pectrality/Plot/SyncPanZoomManipulator.cs → ...ot/Manipulators/SyncPanZoomManipulator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
src/spectrality/Plot/SpectrogramPlotModel.cs → ...ality.Plot/Models/SpectrogramPlotModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/spectrality/Plot/ISpectrogramBitmap.cs → ...ty.Plot/Renderers/ISpectrogramRenderer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
using Spectrality.Models; | ||
|
||
namespace Spectrality.Plot; | ||
namespace Spectrality.Plot.Renderers; | ||
|
||
public interface ISpectrogramBitmap | ||
public interface ISpectrogramRenderer | ||
{ | ||
void RenderBitmap(Spectrogram spectrogram); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace Spectrality.Plot.Series; | ||
|
||
public interface ISyncSeries | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Oxyplot.Avalonia" Version="2.1.0-Avalonia11" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Spectrality.Core\Spectrality.Core.csproj" /> | ||
</ItemGroup> | ||
</Project> |
4 changes: 2 additions & 2 deletions
4
...Plot/CartesianCoordinateTransformation.cs → ...orms/CartesianCoordinateTransformation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...trality/Plot/ICoordinateTransformation.cs → ...t/Transforms/ICoordinateTransformation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ty/Plot/LinearCoordinateTransformation.cs → ...nsforms/LinearCoordinateTransformation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ot/LogarithmicCoordinateTransformation.cs → ...ms/LogarithmicCoordinateTransformation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31903.59 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spectrality", "Spectrality\Spectrality.csproj", "{B4939BCC-384B-42B5-9635-D1C4DECE20FA}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spectrality.Core", "Spectrality.Core\Spectrality.Core.csproj", "{06483905-932E-4A46-A06E-BEA8D42E0408}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spectrality.Plot", "Spectrality.Plot\Spectrality.Plot.csproj", "{7428452C-8AA5-406B-A8BA-D03DEE616D27}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B4939BCC-384B-42B5-9635-D1C4DECE20FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4939BCC-384B-42B5-9635-D1C4DECE20FA}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B4939BCC-384B-42B5-9635-D1C4DECE20FA}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B4939BCC-384B-42B5-9635-D1C4DECE20FA}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{06483905-932E-4A46-A06E-BEA8D42E0408}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{06483905-932E-4A46-A06E-BEA8D42E0408}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{06483905-932E-4A46-A06E-BEA8D42E0408}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{06483905-932E-4A46-A06E-BEA8D42E0408}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{7428452C-8AA5-406B-A8BA-D03DEE616D27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{7428452C-8AA5-406B-A8BA-D03DEE616D27}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{7428452C-8AA5-406B-A8BA-D03DEE616D27}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{7428452C-8AA5-406B-A8BA-D03DEE616D27}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.