diff options
author | Camil Staps | 2015-02-26 17:45:59 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-26 17:45:59 +0100 |
commit | 4c555281988424a83b004c06a3f85e60d1c9fc6e (patch) | |
tree | feefe8cba9ae8ebdc3ae063ea7757a06d1cd4e18 /Week4/src/oo15loipe/TekenLoipe.java | |
parent | x (diff) |
Finished week 4
Diffstat (limited to 'Week4/src/oo15loipe/TekenLoipe.java')
-rw-r--r-- | Week4/src/oo15loipe/TekenLoipe.java | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/Week4/src/oo15loipe/TekenLoipe.java b/Week4/src/oo15loipe/TekenLoipe.java index de9e742..8c9386f 100644 --- a/Week4/src/oo15loipe/TekenLoipe.java +++ b/Week4/src/oo15loipe/TekenLoipe.java @@ -1,15 +1,19 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package oo15loipe; /** - * - * @author cstaps + * Interface for a class that can show a loipe on the screen + * + * @author Thijs Heijligenberg s4451414, Camil Staps, s4498062 */ public interface TekenLoipe { + /** + * Draw the loipe + */ public void teken() ; // teken de gegeven loipe + + /** + * Set the current position of the skier + * @param p + */ public void setPosition(Punt p) ; // teken de spor ter op de gegeven po s i t i e } |