2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Represents a spanning point on a timeline part.
|
|
|
|
/// </summary>
|
2021-04-15 15:30:20 +08:00
|
|
|
public class DurationVisualisation : Circle
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
protected DurationVisualisation(double startTime, double endTime)
|
|
|
|
{
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2021-04-15 15:30:20 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
X = (float)startTime;
|
|
|
|
Width = (float)(endTime - startTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|