Click or drag to resize
DigitalRuneGeometricObjectClone Method
Creates a new GeometricObject that is a clone (deep copy) of the current instance.

Namespace: DigitalRune.Geometry
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public GeometricObject Clone()

Return Value

Type: GeometricObject
A new GeometricObject that is a clone (deep copy) of the current instance.
Remarks
Notes to Inheritors: The method Clone calls CreateInstanceCore which is responsible for creating a new instance of the GeometricObject derived class and CloneCore(GeometricObject) to create a copy of the current instance. Classes that derive from GeometricObject need to implement CreateInstanceCore and CloneCore(GeometricObject).
See Also