1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Fix formatting

This commit is contained in:
kamp 2020-11-11 21:52:43 +01:00
parent 85017a0094
commit 8341d3ad74

View File

@ -69,10 +69,10 @@ namespace osu.Game.Tests.Visual.Ranking
for (int i = 0; i < 500; i++)
{
float angle = (float) random.NextDouble() * 2 * (float) Math.PI;
float radius = (float) random.NextDouble() * 0.5f * HitCircle.OBJECT_RADIUS;
float angle = (float)random.NextDouble() * 2 * (float)Math.PI;
float radius = (float)random.NextDouble() * 0.5f * HitCircle.OBJECT_RADIUS;
Vector2 position = new Vector2(radius * (float) Math.Cos(angle), radius * (float) Math.Sin(angle));
Vector2 position = new Vector2(radius * (float)Math.Cos(angle), radius * (float)Math.Sin(angle));
hitEvents.Add(new HitEvent(0, HitResult.Perfect, new HitCircle(), new HitCircle(), position));
}