/* * Created by SharpDevelop. * User: windows * Date: 24.01.2005 * Time: 14:01 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.Windows.Forms; namespace fraktal { /// /// Description of MainForm. /// public class MainForm : System.Windows.Forms.Form { public MainForm() { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); } [STAThread] public static void Main(string[] args) { Application.Run(new MainForm()); } #region Windows Forms Designer generated code /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { // // MainForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(512, 517); this.Name = "MainForm"; this.Text = "MainForm"; this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainFormPaint); } #endregion void MainFormPaint(object sender, System.Windows.Forms.PaintEventArgs e) { for(int k=1;k<=64;k++) { string filename = "c:\\Bit"+k+".bmp"; Bitmap bit = new Bitmap(filename); Bitmap frakt = new Bitmap("c:\\Frakt.bmp"); int[] Drehung = SetType(bit); int width = 4; while(width<512) { for(int y = 0; y