BEPUphysics.DataStructures.MeshBoundingBoxTree.Reconstruct C# (CSharp) Метод

Reconstruct() публичный Метод

Reconstructs the tree based on the current data.
public Reconstruct ( ) : void
Результат void
        public void Reconstruct()
        {
            root = null;
            for (int i = 0; i < data.indices.Length; i += 3)
            {
                //Use a permuted version of the triangles instead of the actual triangle list.
                //Permuting makes the input basically random, improving the quality of the tree.
                Insert((int)(((982451653L * (i / 3)) % (data.indices.Length / 3)) * 3));
            }
        }