C# Class BEPUphysics.Constraints.SolverGroups.CustomizableSolverGroup

Constraint made from other constraints. Putting constraints into a solver group can help with organization and, in some cases, performance. If you have multiple constraints between the same two entities, putting the constraints into a CustomizableSolverGroup can lower lock contention. Be careful about overloading a single solvergroup; it should be kept relatively small to ensure that the multithreading loads stay balanced.
Inheritance: SolverGroup
Datei anzeigen Open project: Indiefreaks/igf

Public Methods

Method Description
Add ( EntitySolverUpdateable solverUpdateable ) : void

Adds a new solver updateable to the solver group.

Remove ( EntitySolverUpdateable solverUpdateable ) : void

Removes a solver updateable from the solver group.

Method Details

Add() public method

Adds a new solver updateable to the solver group.
public Add ( EntitySolverUpdateable solverUpdateable ) : void
solverUpdateable EntitySolverUpdateable Solver updateable to add.
return void

Remove() public method

Removes a solver updateable from the solver group.
public Remove ( EntitySolverUpdateable solverUpdateable ) : void
solverUpdateable EntitySolverUpdateable Solver updateable to remove.
return void