用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);
2022-02-16 16:43:28 40KB 绘制样条曲线
1
C#GDI+ 鼠标绘制图像 样条曲线 Nurbs 三次样条曲线 很经典很完美的样条曲线,注意不是贝塔尔曲线,是Nurbs曲线,也叫三次样条曲线,和CAD绘制的一模一样,显示的效果也一模一样。
2021-10-05 11:42:48 461KB C#GDI+ 鼠标绘制图像
1