1. 首页
  2. 编程语言
  3. C#
  4. 用C#绘制样条曲线又一例, Point[] points = {new Point(60, 60),

用C#绘制样条曲线又一例, Point[] points = {new Point(60, 60),

上传者: 2018-12-08 15:38:39上传 RAR文件 32.61KB 热度 46次
用C#绘制样条曲线又一例, Point[] points = {new Point(60, 60), new Point(150, 80), new Point(200, 40), new Point(180, 120), new Point(120, 100), new Point(80, 160)}; Pen pen = new Pen(Color.FromArgb(255, 0, 0, 255)); e.Graphics.DrawClosedCurve(pen, points);
用户评论