mandelbrot-set/MandelbrotSet/MandelbrotDisplay.cs

22 lines
447 B
C#
Raw Normal View History

2018-07-12 10:13:00 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MandelbrotSet
{
public partial class MandelbrotDisplay : Form
{
public MandelbrotDisplay(Image image)
{
InitializeComponent();
pbxDisplay.Image = image;
}
}
}