示例#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);
        }