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
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-26 14:44:40 +08:00
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations
|
|
|
|
{
|
|
|
|
/// <summary>
|
2017-09-26 14:51:45 +08:00
|
|
|
/// Represents a singular point on a timeline part.
|
2017-09-26 14:44:40 +08:00
|
|
|
/// </summary>
|
2021-04-15 14:29:22 +08:00
|
|
|
public class PointVisualisation : Circle
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2021-04-13 15:41:29 +08:00
|
|
|
public const float MAX_WIDTH = 4;
|
2020-10-09 15:49:51 +08:00
|
|
|
|
2020-01-27 16:34:25 +08:00
|
|
|
public PointVisualisation(double startTime)
|
2020-10-09 14:38:58 +08:00
|
|
|
: this()
|
|
|
|
{
|
|
|
|
X = (float)startTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PointVisualisation()
|
2017-09-26 14:44:40 +08:00
|
|
|
{
|
2021-04-15 17:42:07 +08:00
|
|
|
RelativePositionAxes = Axes.Both;
|
2017-09-26 14:44:40 +08:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2020-10-09 14:38:58 +08:00
|
|
|
|
2021-04-13 15:25:43 +08:00
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
Width = MAX_WIDTH;
|
|
|
|
Height = 0.75f;
|
2017-09-26 14:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|