CloneCoordPoint Method

WRAPPER_API virtual CoordPoint *CloneCoordPoint(short dim = 0) const

 

Description

The CloneCoordPoint method produces a deep-copy of the current instance.  The behavior of the CloneCoordPoint method is the same as the behavior of the Clone method, except CloneCoordPoint returns a pointer to a CoordPoint instead of a pointer to a Serializable.

 

Example

void CoordPoint_CloneCoordPoint(GeoCalcPBW::CoordPoint * pt)

{

GeoCalcPBW::CoordPoint * clonedPt = pt->CloneCoordPoint();

}