diff options
Diffstat (limited to 'Week15 Mandelbrot/src/mandelbrot/Grid.java')
-rw-r--r-- | Week15 Mandelbrot/src/mandelbrot/Grid.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Week15 Mandelbrot/src/mandelbrot/Grid.java b/Week15 Mandelbrot/src/mandelbrot/Grid.java new file mode 100644 index 0000000..74b4bd6 --- /dev/null +++ b/Week15 Mandelbrot/src/mandelbrot/Grid.java @@ -0,0 +1,16 @@ +/*
+ * 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 ();
+}
|