• 大小: 0.02M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签:

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace DrawBezier
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            MyGraphic = this.CreateGraphics();
        }

        int LinesCount = 0;

        Graphics MyGraphic;



        public PointF GetPoint(PointF[] MyPoints double t)
        {
            LinesCount++;
            int PCount = MyPoints.Length;
            PointF[] MyNewPoints = new PointF[PCount - 1];
            double Anothert = 1.0 - t;
            for (int i = 0; i < PCount - 1; i++)
            {
                MyNewPoints[i]

评论

共有 条评论