1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 10:47:24 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Timelines/Summary/Visualisations/PointVisualisation.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
905 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;
2018-04-13 17:19:50 +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.
/// </summary>
public partial class PointVisualisation : Circle
{
2021-04-13 15:41:29 +08:00
public const float MAX_WIDTH = 4;
2020-01-27 16:34:25 +08:00
public PointVisualisation(double startTime)
: this()
{
X = (float)startTime;
}
public PointVisualisation()
{
RelativePositionAxes = Axes.Both;
RelativeSizeAxes = Axes.Y;
Anchor = Anchor.CentreLeft;
Origin = Anchor.Centre;
Width = MAX_WIDTH;
Height = 0.75f;
}
}
}