免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

c#如何實現雪花分形-創新互聯

c# 如何實現雪花分形?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

創新互聯是一家集網站建設,雙灤企業網站建設,雙灤品牌網站建設,網站定制,雙灤網站建設報價,網絡營銷,網絡優化,雙灤網站推廣為一體的創新建站企業,幫助傳統企業提升企業形象加強企業競爭力。可充分滿足這一群體相比中小企業更為豐富、高端、多元的互聯網需求。同時我們時刻保持專業、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們為更多的企業打造出實用型網站。
public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }

  private void Form1_Paint(object sender, PaintEventArgs e)
  {
   DrawKochSnow(e.Graphics);
  }

  private void ZheXian(Point p1, Point p2, Graphics g) // 4條基本線段組成的折線
  {
   Point p3 = new Point(p1.X + (p2.X - p1.X) / 3, p1.Y + (p2.Y - p1.Y) / 3); // 三等分點坐標
   Point p4 = new Point(p1.X + (p2.X - p1.X) * 2 / 3, p1.Y + (p2.Y - p1.Y) * 2 / 3); // 三等分點坐標
   Point p4XD3 = new Point(p4.X - p3.X, p4.Y - p3.Y); // p4相對于p3點的坐標
   //int x = (int)(p4XD3.X * Math.Cos(Math.PI / 3) - p4XD3.Y * Math.Sin(Math.PI / 3));
   //int y = (int)(p4XD3.X * Math.Sin(Math.PI / 3) + p4XD3.Y * Math.Cos(Math.PI / 3));
   // 注意計算機的屏幕垂直坐標和數學上相反,所以數學上逆時針旋轉在計算機上相當于順時針旋轉
   int x = (int)Math.Round(p4XD3.X * Math.Cos(Math.PI / 3) + p4XD3.Y * Math.Sin(Math.PI / 3));
   int y = (int)Math.Round(p4XD3.Y * Math.Cos(Math.PI / 3) - p4XD3.X * Math.Sin(Math.PI / 3));
   Point p5XD3 = new Point(x, y); // 凸起點p5相對于p3點的坐標
   Point p5 = new Point(p3.X + x, p3.Y + y); // p5相對于原點的坐標
   Pen pen = new Pen(Brushes.Black, 1);
   double length = Math.Sqrt(Math.Pow(p2.X - p1.X, 2) + Math.Pow(p2.Y - p1.Y, 2)) / 3;
   //Console.WriteLine(length);
   if (length > 20) // 通過最終線段長度可以控制迭代
   {
    ZheXian(p1, p3, g);
    ZheXian(p3, p5, g);
    ZheXian(p5, p4, g);
    ZheXian(p4, p2, g);
   }
   else
   {
    g.DrawLine(pen, p1, p3);
    g.DrawLine(pen, p3, p5);
    g.DrawLine(pen, p5, p4);
    g.DrawLine(pen, p4, p2);
   }
  }

  private void DrawKochSnow(Graphics g) // 科赫雪花(瑞典人科赫于1904年提出了著名的“雪花”曲線)
  {
   int length = 480;
   Point origin = new Point(this.ClientSize.Width / 2, this.ClientSize.Height / 2);
   g.FillEllipse(Brushes.Blue, new RectangleF(origin, new Size(10, 10)));
   // 計算三角形的頂點讓其中心和窗體的中心重合
   Point A = new Point(origin.X - length / 2, (int)(origin.Y + length / (2 * Math.Sqrt(3))));
   Point B = new Point(origin.X, (int)(origin.Y - length / Math.Sqrt(3)));
   Point C = new Point(origin.X + length / 2, (int)(origin.Y + length / (2 * Math.Sqrt(3))));
   ZheXian(A, B, g);
   ZheXian(B, C, g);
   ZheXian(C, A, g);
  }
 }

當前標題:c#如何實現雪花分形-創新互聯
本文鏈接:http://m.newbst.com/article48/cepghp.html

成都網站建設公司_創新互聯,為您提供自適應網站外貿網站建設關鍵詞優化小程序開發外貿建站網站排名

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都做網站