| DualPartitionTCloneCore Method |
Makes the instance a clone (deep copy) of the specified
BasePartitionT.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax protected override void CloneCore(
BasePartition<T> source
)
Protected Overrides Sub CloneCore (
source As BasePartition(Of T)
)
protected:
virtual void CloneCore(
BasePartition<T>^ source
) override
abstract CloneCore :
source : BasePartition<'T> -> unit
override CloneCore :
source : BasePartition<'T> -> unit
Parameters
- source
- Type: DigitalRune.Geometry.PartitioningBasePartitionT
The object to clone.
Remarks Notes to Inheritors: Every
BasePartitionT 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