C# 클래스 BEPUphysics.Constraints.SolverSettings

Contains information about how a wheel solves its constraints.
파일 보기 프로젝트 열기: Indiefreaks/igf 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
DefaultMinimumImpulse float
DefaultMinimumIterations int

프로퍼티 상세

DefaultMinimumImpulse 공개적으로 정적으로 프로퍼티

The value to assign to new constraints' SolverSettings.MinimumImpulse. Impulses with magnitudes below this value will count as effectively zero in determining iteration early outs unless changed in the constraint's solver settings. High values quicken the short circuit but can cause instability, while low values will often prevent short circuiting, possibly increasing accuracy but harming performance. Defaults to .001f.
public static float DefaultMinimumImpulse
리턴 float

DefaultMinimumIterations 공개적으로 정적으로 프로퍼티

The value to assign to new constraints' SolverSettings.MinimumIterations. Constraints are able to skip extra calculations if deemed appropriate after they complete the minimum iterations. Higher values force the system to wait longer before trying to early out, possibly improving behavior. Defaults to 1.
public static int DefaultMinimumIterations
리턴 int