public override IGraphCloneable Clone(CloneContext cloneContext) { DxfBody dxfBody = (DxfBody)cloneContext.GetExistingClone((IGraphCloneable)this); if (dxfBody == null) { dxfBody = new DxfBody(); cloneContext.RegisterClone((IGraphCloneable)this, (IGraphCloneable)dxfBody); dxfBody.CopyFrom((DxfHandledObject)this, cloneContext); } return((IGraphCloneable)dxfBody); }
public virtual void Visit(DxfBody body) { }
public virtual void Visit(DxfBody body) { this.VisitModelerGeometry((DxfModelerGeometry)body); }