Skip to content

Commit

Permalink
Create new Track class
Browse files Browse the repository at this point in the history
Issue #297 Create new Track class to replace the old SpectralTrack class.
  • Loading branch information
towsey committed Apr 12, 2020
1 parent 43eeae1 commit f9292e3
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 303 deletions.
30 changes: 30 additions & 0 deletions src/AudioAnalysisTools/Events/Tracks/Track.cs
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();
}
}
}
303 changes: 0 additions & 303 deletions src/AudioAnalysisTools/SpectralTrack.cs

This file was deleted.

0 comments on commit f9292e3

Please sign in to comment.