Ejemplo n.º 1
0
        //********************************************************************
        // ContourToFloatContour()
        // -- Convert a Contour into *this* FloatContour
        //
        public void ContourToFloatContour(Contour c)
        {
            //***008OL remove any existing mPointVector
            if (Length > 0)
            {
                _points.Clear();
            }

            for (int i = 0; i < c.Length; i++)
            {
                AddPoint(c[i].X, c[i].Y);
            }
        }