From 6fd61db17fc695355d0c604507e7a86b0e84eba2 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 4 Jun 2015 22:33:05 +0200 Subject: Started own version --- Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java | 34 ------------------------ 1 file changed, 34 deletions(-) delete mode 100644 Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java (limited to 'Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java') diff --git a/Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java b/Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java deleted file mode 100644 index 1980eed..0000000 --- a/Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package mandelbrot; - -import java.awt.BorderLayout; -import java.awt.Insets; -import javax.swing.JPanel; - - -/* -This class creates an applet for generating Mandelbrot sets. The applet is -meant to be embedded in an HTML page and has hooks to interact with the page. -Functions are provided to allow the user to zoom in and out and to move around -on the surface of the figure. The user can also select from a set of color -schemes. -*/ - -public class Mandelbrot -{ - public static void main(String args[]) { - - GridView grid = new GridView(); - MainWindow mandel = new MainWindow ( grid ); - - Area area = new Area ( -2.5, 2.5, 5, 5 ); - GridFiller filler = new GridFiller ( grid, area ); - AreaController controller = new AreaController ( filler, grid ); - AreaSelector selector = new AreaSelector ( grid, controller ); - filler.fill(); - } - -} \ No newline at end of file -- cgit v1.2.3