diff options
Diffstat (limited to 'Week15 Mandelbrot/src/mandelbrot/Grid.java')
-rw-r--r-- | Week15 Mandelbrot/src/mandelbrot/Grid.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Week15 Mandelbrot/src/mandelbrot/Grid.java b/Week15 Mandelbrot/src/mandelbrot/Grid.java deleted file mode 100644 index 74b4bd6..0000000 --- a/Week15 Mandelbrot/src/mandelbrot/Grid.java +++ /dev/null @@ -1,16 +0,0 @@ -/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-package mandelbrot;
-
-/**
- *
- * @author Sjaak
- */
-public interface Grid {
- void setPixel (int x, int y, int [] rgb);
-
- int getWidth ();
- int getHeight ();
-}
|