Aufgabe 9
Download simpleDrawingFramework-0.1.09.1.jar
Test
5 6 7 8 9 10 11 12 13 | public class Main { public static void main(String[] args) { // drawing framework can run only one AnimatedDrawingScript at a time // DrawingFramework.run(new TestScript()); DrawingFramework.run(new KreisBewegung()); } } |
Aufgabe 9.a – Sinus animation
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | public class TestScript implements AnimatedDrawingScript { protected Gitter gitter; protected Sinuskurve sinuskurve; public TestScript() { gitter = new Gitter(100, 100, Color.BLACK); sinuskurve = new Sinuskurve(100, 2 * Math.PI * 180, Color.RED); } @Override public String getDisplayName() { return "Script=" + gitter + "\n" + sinuskurve; } @Override public void show(AnimationControler controller) { double amplitude = 2 * Math.PI * 10; double length = 100; controller.add(gitter); controller.add(sinuskurve); for (int time = 0; time < 11 * 4; time++) { amplitude *= -1; sinuskurve.setA(amplitude + time); sinuskurve.setLenght(length + time); controller.refreshNow(); controller.stayFor(250); } controller.refreshNow(); } } |
Aufgabe 9.b Kreisbewegung
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | public class KreisBewegung implements AnimatedDrawingScript { protected Point mittelpunkt; protected Point rotierenderPunkt; public KreisBewegung() { mittelpunkt = new Point(222, 333); rotierenderPunkt = new Point(0, 0); } @Override public String getDisplayName() { return "Kreisbewegung"; } @Override public void show(AnimationControler controller) { int anzahlUmlaeufe = 10; Kreisbahn kreisbahn = new Kreisbahn(mittelpunkt, 60, 100); controller.add(mittelpunkt); controller.add(rotierenderPunkt); for (int time = 60 * anzahlUmlaeufe; time >= 0; --time) { Point tmp = kreisbahn.getPosition(time); rotierenderPunkt.moveAbs(tmp.getX(), tmp.getY()); controller.refreshNow(); controller.stayFor(250); } controller.refreshNow(); } } |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | public class Kreisbahn { protected Point mittelpunkt; protected int umlaufdauer; protected int radius; public Kreisbahn(Point mittelpunkt, int umlaufdauer, int radius) { this.mittelpunkt = mittelpunkt; this.umlaufdauer = umlaufdauer; this.radius = radius; } public Kreisbahn() { this(new Point(222, 333), 60, 55); } public Kreisbahn(Kreisbahn other) { this(other.mittelpunkt, other.umlaufdauer, other.radius); } public Point getPosition(int time) { double dx = mittelpunkt.getX() + (-radius * Math.cos(phi(time, umlaufdauer))); double dy = mittelpunkt.getY() + (radius * Math.sin(phi(time, umlaufdauer))); return new Point(dx, dy); } protected double phi(int t, int tu) { return (tu == 0) ? 2 * Math.PI * t : 2 * Math.PI * t / tu; } public String toString() { return "Kreisbahn: " + mittelpunkt + ", Umlaufdauer=" + umlaufdauer; } } |
Leave a Reply