BEPUphysics.DataStructures.MeshBoundingBoxTree.Refit C# (CSharp) Méthode

Refit() public méthode

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
Résultat void
        public void Refit()
        {
            if (root != null)
                root.Refit(data);
        }