2019-01-24 17:43:03 +09: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 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 singular point on a timeline part.
|
|
|
|
/// </summary>
|
2021-04-15 15:29:22 +09:00
|
|
|
public class PointVisualisation : Circle
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2021-04-13 16:41:29 +09:00
|
|
|
public const float MAX_WIDTH = 4;
|
2020-10-09 16:49:51 +09:00
|
|
|
|
2020-01-27 17:34:25 +09:00
|
|
|
public PointVisualisation(double startTime)
|
2020-10-09 15:38:58 +09:00
|
|
|
: this()
|
|
|
|
{
|
|
|
|
X = (float)startTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PointVisualisation()
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
2021-04-15 18:42:07 +09:00
|
|
|
RelativePositionAxes = Axes.Both;
|
2018-04-13 18:19:50 +09:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2020-10-09 15:38:58 +09:00
|
|
|
|
2021-04-13 16:25:43 +09:00
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
Width = MAX_WIDTH;
|
|
|
|
Height = 0.75f;
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|