Skip to content
Snippets Groups Projects

Completed task 2.4

Merged Edvard Granheim Harbo requested to merge task.2.4 into dev
15 files
+ 195
12
Compare changes
  • Side-by-side
  • Inline
Files
15
@@ -102,6 +102,14 @@ public class ChaosCanvas{
}
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public void printCanvas() {
for (int i = 0; i < canvas.length; i++) {
for (int j = 0; j < canvas[i].length; j++) {
@@ -114,5 +122,4 @@ public class ChaosCanvas{
System.out.println();
}
}
}
\ No newline at end of file
Loading