예제 #1
0
파일: Form1.cs 프로젝트: InFly1/Fractals
        private void Lumbda_Click(object sender, EventArgs e)
        {
            int n = Convert.ToInt32(Lumbda_N.Text);

            g.Clear(back_ground);
            fractals.Lumbda(pictureBox1.Width, pictureBox1.Height, n);
            pictureBox1.Image = bmp;
            fractals.ChangeColor(front);
        }