csaki

Koch

Oct 1st, 2013
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.82 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace koch
  11. {
  12.     public partial class Form1 : Form
  13.     {
  14.         Graphics g;
  15.         int count = 0;
  16.         double distance;
  17.         double distanceKis;
  18.         PointF Kpont;
  19.         PointF Lpont;
  20.         PointF Mpont;
  21.  
  22.         public Form1()
  23.         {
  24.             InitializeComponent();
  25.  
  26.             g = CreateGraphics();
  27.             g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
  28.         }
  29.  
  30.         public void Koch(PointF Apont, PointF Bpont)
  31.         {
  32.             distance = Math.Sqrt(Math.Pow(Bpont.X - Apont.X, 2) + Math.Pow(Bpont.Y - Apont.Y, 2));
  33.             if (distanceKis < 10)
  34.             {
  35.                 distanceKis = Math.Sqrt(3) / 2 * distance;
  36.                 // Első harmadoló
  37.                 Kpont = new PointF((2 * Apont.X + Bpont.X) / 3, (2 * Apont.Y + Bpont.Y) / 3);
  38.                 // Második harmadoló
  39.                 Lpont = new PointF((Apont.X + 2 * Bpont.X) / 3, (Apont.Y + 2 * Bpont.Y) / 3);
  40.                 // Bűűűvös pont
  41.                 Mpont = new PointF(Apont.X + (3 / 2) * (Kpont.X - Apont.X) + (float)distanceKis * (Apont.Y - Kpont.Y), Apont.Y + (3 / 2) * (Kpont.Y - Apont.Y) + (float)distanceKis * (Kpont.X - Apont.X));
  42.  
  43.                 Koch(Apont, Kpont);
  44.                 Koch(Kpont, Mpont);
  45.                 Koch(Mpont, Lpont);
  46.                 Koch(Lpont, Bpont);
  47.             }
  48.             else
  49.             {
  50.                 g.DrawLine(new Pen(Color.Blue), Apont, Bpont);
  51.             }
  52.         }
  53.  
  54.         private void button1_Click(object sender, EventArgs e)
  55.         {
  56.             Koch(new PointF(100, 20), new PointF(500, 20));
  57.         }
  58.  
  59.  
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment