Click or drag to resize
DigitalRuneRigidBodyCloneCore Method
Makes the instance a clone (deep copy) of the specified RigidBody.

Namespace: DigitalRune.Physics
Assembly: DigitalRune.Physics (in DigitalRune.Physics.dll) Version: 1.10.0.0 (1.10.0.14427)
Syntax
protected virtual void CloneCore(
	RigidBody source
)

Parameters

source
Type: DigitalRune.PhysicsRigidBody
The object to clone.
Remarks
Notes to Inheritors: Every RigidBody derived class must implement this method. A typical implementation is to call base.CloneCore(this) to copy all properties of the base class and then copy all properties of the derived class.
See Also