We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1119d97 commit b0069cdCopy full SHA for b0069cd
Assets/HoloToolkit/Utilities/Scripts/RollingStatistics.cs
@@ -20,7 +20,7 @@ public class VectorRollingStatistics
20
/// How many standard deviations the latest sample was away.
21
/// </summary>
22
public float StandardDeviationsAwayOfLatestSample;
23
-
+
24
/// <summary>
25
/// The average position.
26
@@ -90,13 +90,13 @@ public void Reset()
90
Average = Vector3.zero;
91
if (samples != null)
92
{
93
- for(int index=0;index<samples.Length;index++)
+ for (int index = 0; index < samples.Length; index++)
94
95
samples[index] = Vector3.zero;
96
}
97
98
99
100
101
/// Adds a new sample to the sample list and updates the stats.
102
0 commit comments