mirror of
https://github.com/ppy/osu
synced 2025-01-02 04:12:13 +00:00
Fix formatting
This commit is contained in:
parent
85017a0094
commit
8341d3ad74
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user