Пример #1
0
        //
        // AddClosedCurve
        //
        public void AddClosedCurve(Point [] points)
        {
            if (points == null)
            {
                throw new ArgumentNullException("points");
            }

            Status status = GDIPlus.GdipAddPathClosedCurveI(nativePath, points, points.Length);

            GDIPlus.CheckStatus(status);
        }