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
파일 보기 프로젝트 열기: Indiefreaks/igf

공개 메소드들

메소드 설명
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