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;
|
2020-10-09 15:38:58 +09:00
|
|
|
using osuTK;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Represents a singular point on a timeline part.
|
|
|
|
/// </summary>
|
|
|
|
public class PointVisualisation : Box
|
|
|
|
{
|
2020-10-09 16:49:51 +09:00
|
|
|
public const float WIDTH = 1;
|
|
|
|
|
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
|
|
|
{
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
2020-10-09 15:38:58 +09:00
|
|
|
RelativePositionAxes = Axes.X;
|
2018-04-13 18:19:50 +09:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2020-10-09 15:38:58 +09:00
|
|
|
|
2020-10-09 16:49:51 +09:00
|
|
|
Width = WIDTH;
|
|
|
|
EdgeSmoothness = new Vector2(WIDTH, 0);
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|