diff options
author | Camil Staps | 2015-04-18 13:44:44 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-18 13:44:44 +0200 |
commit | 6a44b074f0169a1b0f9e92347af929c5e471746e (patch) | |
tree | ae5663fe7c69881bf4ecfedbef99c2505f8ec964 /Week4/src/week4/Week4.java | |
parent | Added copyright to docs (diff) |
Reorganised projects
Diffstat (limited to 'Week4/src/week4/Week4.java')
-rw-r--r-- | Week4/src/week4/Week4.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Week4/src/week4/Week4.java b/Week4/src/week4/Week4.java deleted file mode 100644 index e523a54..0000000 --- a/Week4/src/week4/Week4.java +++ /dev/null @@ -1,36 +0,0 @@ -package week4; - -import java.util.Scanner; -import oo15loipe.AsciiArt; -import oo15loipe.Loipe; -import oo15loipe.LoipePlaatje; - -/** - * Solutions for assignment 4 - * - * @author Thijs Heijligenberg, s4451414, Camil Staps, s4498062 - */ -public class Week4 { - - /** - * Create a Loipe, draw it using LoipePlaatje and AsciiArt - * - * @param args the command line arguments (are ignored) - */ - public static void main(String[] args) { - Scanner sc = new Scanner(System.in); - - Loipe l = new Loipe("srssrsslsllsss"); - - LoipePlaatje lp = new LoipePlaatje(l); - lp.teken(); - - AsciiArt aa = new AsciiArt(l); - do { - aa.setPosition(l.stap()); - aa.teken(); - } while (sc.nextLine() != null); - - } - -} |