C# Класс 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.
Наследование: SolverGroup
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

Adds a new solver updateable to the solver group.
public Add ( EntitySolverUpdateable solverUpdateable ) : void
solverUpdateable EntitySolverUpdateable Solver updateable to add.
Результат void

Remove() публичный Метод

Removes a solver updateable from the solver group.
public Remove ( EntitySolverUpdateable solverUpdateable ) : void
solverUpdateable EntitySolverUpdateable Solver updateable to remove.
Результат void