aboutsummaryrefslogtreecommitdiff
path: root/Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java
diff options
context:
space:
mode:
authorCamil Staps2015-06-04 22:33:05 +0200
committerCamil Staps2015-06-04 22:44:48 +0200
commit6fd61db17fc695355d0c604507e7a86b0e84eba2 (patch)
treea3e582dba961b59945b12f8776ad115f52bdce7d /Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java
parentStart week15 (diff)
Started own version
Diffstat (limited to 'Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java')
-rw-r--r--Week15 Mandelbrot/src/mandelbrot/Mandelbrot.java34
1 files changed, 0 insertions, 34 deletions
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