BEPUphysics.Constraints.SolverGroups.SolverGroup.ExclusiveUpdate C# (CSharp) Method

ExclusiveUpdate() public method

Performs any pre-solve iteration work that needs exclusive access to the members of the solver updateable. Usually, this is used for applying warmstarting impulses.
public ExclusiveUpdate ( ) : void
return void
        public override void ExclusiveUpdate()
        {
            for (int i = 0; i < solverUpdateables.Count; i++)
            {
                ExclusiveUpdateUpdateable(solverUpdateables.Elements[i]);
            }
        }