|  | PlaneLimitRestitution Property | 
            Gets or sets the coefficient of restitution.
            
 
Namespace: DigitalRune.Physics.ConstraintsAssembly: DigitalRune.Physics (in DigitalRune.Physics.dll) Version: 1.10.0.0 (1.10.0.14427)
 Syntax
Syntaxpublic float Restitution { get; set; }Public Property Restitution As Single
	Get
	Set
public:
property float Restitution {
	float get ();
	void set (float value);
}member Restitution : float32 with get, set
Property Value
Type: 
SingleThe coefficient of restitution.
 Remarks
Remarks
            If the constraint anchor point on the second body collides with the plane on the first body, 
            the bodies will bounce back. If this property is 0, there will be no bounce. If this 
            property is 1, the whole velocity is reflected.
            
 See Also
See Also