| CollisionDetectionFullContactSetPerFrame Property |
Gets or sets a value indicating whether the full contact set should be found per frame.
Namespace: DigitalRune.Geometry.CollisionsAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public bool FullContactSetPerFrame { get; set; }
Public Property FullContactSetPerFrame As Boolean
Get
Set
public:
property bool FullContactSetPerFrame {
bool get ();
void set (bool value);
}
member FullContactSetPerFrame : bool with get, set
Property Value
Type:
Boolean if the full contact set should be found per frame; otherwise,
. The default value is
.
Remarks
Some CollisionAlgorithms compute only 1 new Contact when they
are executed. More contacts are added in upcoming collision tests. If
FullContactSetPerFrame is set to , some algorithms will
perform enhanced tests that find more than 1 contacts with each call.
See Also