Fix method indent size

Co-authored-by: Salman Ahmed <frenzibyte@gmail.com>
This commit is contained in:
Huo Yaoyuan 2024-02-29 10:47:16 +08:00 committed by GitHub
parent e86ebd6cdb
commit f28f19ed7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -389,7 +389,7 @@ namespace osu.Game.Rulesets.Objects.Legacy
static bool isLinear(Vector2 p0, Vector2 p1, Vector2 p2)
=> Precision.AlmostEquals(0, (p1.Y - p0.Y) * (p2.X - p0.X)
- (p1.X - p0.X) * (p2.Y - p0.Y));
- (p1.X - p0.X) * (p2.Y - p0.Y));
}
private PathControlPoint[] mergePointsLists(List<ArraySegment<PathControlPoint>> controlPointList)