diff options
| author | Camil Staps | 2015-06-02 09:41:17 +0200 |
|---|---|---|
| committer | Camil Staps | 2015-06-02 09:41:17 +0200 |
| commit | f92dcfbbce3d2057e39314312deed941c22881f5 (patch) | |
| tree | 22b45e41686a10be4f2e87e5be752514dec5acf4 /Week15 Mandelbrot/src/mandelbrot/Grid.java | |
| parent | week 14 tarball (diff) | |
Start week15
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 ();
+}
|
