BEPUphysics.SolverSystems.SolverUpdateable.ExclusiveUpdate C# (CSharp) 메소드

ExclusiveUpdate() 공개 추상적인 메소드

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 abstract ExclusiveUpdate ( ) : void
리턴 void
        public abstract void ExclusiveUpdate();

Usage Example

예제 #1
0
 protected internal void UnsafePrestep(SolverUpdateable updateable)
 {
     updateable.UpdateSolverActivity();
     if (updateable.isActiveInSolver)
     {
         SolverSettings solverSettings = updateable.solverSettings;
         solverSettings.currentIterations       = 0;
         solverSettings.iterationsAtZeroImpulse = 0;
         updateable.Update(timeStepSettings.TimeStepDuration);
         updateable.ExclusiveUpdate();
     }
 }
All Usage Examples Of BEPUphysics.SolverSystems.SolverUpdateable::ExclusiveUpdate