Skip to content

Instantly share code, notes, and snippets.

@mxmerz
Created November 25, 2012 14:11
Show Gist options
  • Save mxmerz/4143689 to your computer and use it in GitHub Desktop.
Save mxmerz/4143689 to your computer and use it in GitHub Desktop.
Aufgabe 4
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