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

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Projection Clone()

Return Value

Type: Projection
A new Projection 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 Projection derived class and CloneCore(Projection) to create a copy of the current instance. Classes that derive from Projection need to implement CreateInstanceCore and CloneCore(Projection).
See Also