Skip to content

Commit 5732879

Browse files
committed
Edited file comment.
1 parent e9b4860 commit 5732879

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Runtime/MathsHelper.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@
77

88
namespace DavidFDev.Maths
99
{
10+
/// <summary>
11+
/// Collection of static maths helper methods.
12+
/// </summary>
1013
public static class MathsHelper
1114
{
15+
#region Static methods
16+
1217
/// <summary>
1318
/// Shift the start value towards the end value without exceeding.
1419
/// </summary>
@@ -320,5 +325,7 @@ public static Vector2 RotateVector(Vector2 value, float degrees, Vector2 pivot)
320325
direction = Quaternion.Euler(0f, 0f, degrees) * direction;
321326
return direction + pivot;
322327
}
328+
329+
#endregion
323330
}
324331
}

0 commit comments

Comments
 (0)