Ejemplo n.º 1
0
        public void AddCurve(Point [] points, float tension)
        {
            if (points == null)
            {
                throw new ArgumentNullException("points");
            }

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

            GDIPlus.CheckStatus(status);
        }