-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #297 Create new Track class to replace the old SpectralTrack class.
- Loading branch information
Showing
2 changed files
with
30 additions
and
303 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// <copyright file="Track.cs" company="QutEcoacoustics"> | ||
// All code in this file and all associated files are the copyright and property of the QUT Ecoacoustics Research Group (formerly MQUTeR, and formerly QUT Bioacoustics Research Group). | ||
// </copyright> | ||
|
||
namespace AudioAnalysisTools.Events.Interfaces | ||
{ | ||
using System.Collections.Generic; | ||
using AudioAnalysisTools.Events.Drawing; | ||
using SixLabors.ImageSharp.PixelFormats; | ||
using SixLabors.ImageSharp.Processing; | ||
|
||
public class Track : ITrack | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="Track"/> class. | ||
/// Constructor. | ||
/// </summary> | ||
public Track() | ||
{ | ||
} | ||
|
||
public ISet<ISpectralPoint> Points => throw new System.NotImplementedException(); | ||
|
||
public void Draw<T>(IImageProcessingContext graphics, EventRenderingOptions options) | ||
where T : struct, IPixel<T> | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.