Click here to Skip to main content
15,881,413 members
Articles / Programming Languages / C#

The beauty of fractals - A simple fractal rendering program done in C#

Rate me:
Please Sign up or sign in to vote.
4.92/5 (105 votes)
27 Jul 2009CPOL3 min read 172.4K   13.1K   165  
A fractal rendering application demonstrating many .NET programming techniques.
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Threading;
using System.Runtime.Serialization;

namespace FracMaster
{
  
  
    public class TestFractal : GenericFractal 
    {                          
        public TestFractal()
        {
            pars.SetValue("NAME", "Render Test");                     
        }        

        override protected void RenderFunction(object o)
        {
            object[] P = (object[])o;
            RenderResult.RenderComplete clbk = (RenderResult.RenderComplete)P[0];
            RenderResult.RenderStatus status_clbk = (RenderResult.RenderStatus)P[1];

            try
            {
                               
                int width = (int)pars.GetValue("WIDTH");
                int heigth = (int)pars.GetValue("HEIGHT");

                Bitmap bmp = new Bitmap(width, heigth, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);

                using (Graphics g = Graphics.FromImage(bmp))
                {
                    Random r = new Random();

                    for (int i = 0; i < 10000; i++)
                    {
                        int x = r.Next(0, width);
                        int y = r.Next(0, heigth);
                        int w = r.Next(1, width - x);
                        int h = r.Next(1, heigth - y);
                        int col = r.Next(0, 255);
                        using (SolidBrush br = new SolidBrush(Color.FromArgb(col, col, col)))
                        {
                            g.FillRectangle(br, new Rectangle(x, y, w, h));
                        }
                        status_clbk(((float)i) / 100.0f);
                    }
                }

                res.IsCompleted = true;
                ((AutoResetEvent)(res.AsyncWaitHandle)).Set();
                clbk(bmp, 0);
            }
            catch
            {
                clbk(null, -1);
            }
        }

       

         
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Austria Austria
I have started programming at the age of 13 on the commodore 64.

Ever since then I have been programming on many systems in many languages.

During the last 12 years I have been working as professional programmer in different companies and different areas.

Now I am working as freelancer programmer / consultant

Comments and Discussions