BEPUphysics.DataStructures.MeshBoundingBoxTree.Refit C# (CSharp) Method

Refit() public method

Refits the tree based on the current data. This process is cheaper to perform than a reconstruction when the topology of the mesh does not change.
public Refit ( ) : void
return void
        public void Refit()
        {
            if (root != null)
                root.Refit(data);
        }