Beispiel #1
0
        public object Clone()
        {
            CylinderSurfaceData clone = new CylinderSurfaceData();

            clone.startPoint = this.startPoint;
            clone.endPoint   = this.endPoint;
            clone.angle      = this.angle;
            return(clone);
        }
Beispiel #2
0
        public CylinderSurfaceData Mirror()
        {
            CylinderSurfaceData mirror = Clone() as CylinderSurfaceData;

            return(mirror);
        }