1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 05:47:21 +08:00

24 lines
715 B
C#
Raw Normal View History

// 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 18:19:50 +09: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>
public class DurationVisualisation : Circle
2018-04-13 18:19:50 +09:00
{
protected DurationVisualisation(double startTime, double endTime)
{
RelativePositionAxes = Axes.X;
RelativeSizeAxes = Axes.Both;
2018-04-13 18:19:50 +09:00
X = (float)startTime;
Width = (float)(endTime - startTime);
}
}
}