Esempio n. 1
0
        /// <summary>
        /// Collects statistics for this node and all children (for use in experimentation)
        /// </summary>
        /// <param name="stats">The stats to update</param>
        internal override void CollectStats(PointIndexStatistics stats)
        {
            stats.Add(this);

            foreach (Node child in m_Children)
            {
                child.CollectStats(stats);
            }
        }
Esempio n. 2
0
 /// <summary>
 /// Collects statistics for this node (for use in experimentation)
 /// </summary>
 /// <param name="stats">The stats to update</param>
 internal override void CollectStats(PointIndexStatistics stats)
 {
     stats.Add(this);
 }
Esempio n. 3
0
        /// <summary>
        /// Collects statistics for this node and all children (for use in experimentation)
        /// </summary>
        /// <param name="stats">The stats to update</param>
        internal override void CollectStats(PointIndexStatistics stats)
        {
            stats.Add(this);

            foreach (Node child in m_Children)
                child.CollectStats(stats);
        }