예제 #1
0
        public void AddClosedCurve(PointF [] points)
        {
            if (points == null)
            {
                throw new ArgumentNullException("points");
            }

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

            GDIPlus.CheckStatus(status);
        }