mandelbrot-set/MandelbrotSet/MandelbrotDisplay.cs
2023-04-19 16:23:59 +02:00

22 lines
447 B
C#

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;
}
}
}