Created
November 25, 2012 14:11
-
-
Save mxmerz/4143689 to your computer and use it in GitHub Desktop.
Aufgabe 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Quadrate { | |
public static void main(String[] args) { | |
Staffelei s = new Staffelei(); | |
maleFraktal(7, s, 100); | |
} | |
public static void maleFraktal(int n, Staffelei s, double l) { | |
s.move(l, l); | |
s.square(l); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment