1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 15:33:04 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Timelines/Summary/Visualisations/PointVisualisation.cs

35 lines
883 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 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations
{
/// <summary>
/// Represents a singular point on a timeline part.
/// </summary>
public class PointVisualisation : Box
{
public const float WIDTH = 1;
2020-01-27 16:34:25 +08:00
public PointVisualisation(double startTime)
: this()
{
X = (float)startTime;
}
public PointVisualisation()
2018-04-13 17:19:50 +08:00
{
Origin = Anchor.TopCentre;
RelativePositionAxes = Axes.X;
2018-04-13 17:19:50 +08:00
RelativeSizeAxes = Axes.Y;
Width = WIDTH;
EdgeSmoothness = new Vector2(WIDTH, 0);
2018-04-13 17:19:50 +08:00
}
}
}