Skip to content

Commit b0069cd

Browse files
committed
fix formatting
1 parent 1119d97 commit b0069cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/HoloToolkit/Utilities/Scripts/RollingStatistics.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class VectorRollingStatistics
2020
/// How many standard deviations the latest sample was away.
2121
/// </summary>
2222
public float StandardDeviationsAwayOfLatestSample;
23-
23+
2424
/// <summary>
2525
/// The average position.
2626
/// </summary>
@@ -90,13 +90,13 @@ public void Reset()
9090
Average = Vector3.zero;
9191
if (samples != null)
9292
{
93-
for(int index=0;index<samples.Length;index++)
93+
for (int index = 0; index < samples.Length; index++)
9494
{
9595
samples[index] = Vector3.zero;
9696
}
9797
}
9898
}
99-
99+
100100
/// <summary>
101101
/// Adds a new sample to the sample list and updates the stats.
102102
/// </summary>

0 commit comments

Comments
 (0)