Category Archives: Einführung in die Programmierung
Ihr findet eine erste Beispielaufgabe zur Klausurvorbereitung im HMS.
Hier nun doch noch das Video von der Übung:
Sorry, recording the screen cast did not work.
Instead find the source code of the FractalTree from the lecture here:
package de.uks.ep1415.m1234567.ha11; import processing.core.PApplet; public class FractalTree extends PApplet { @Override public void setup() { size(400, 600); } float totalSize = 5; @Override public void draw() { background(255); drawTree(200, 550, PI/2, totalSize); totalSize++; } private void drawTree(float rootX, float rootY, float angle, float size) { float topX = rootX + size * cos(angle); float topY = rootY - size * sin(angle); stroke(139,69,19); strokeWeight(size / 20); line(rootX, rootY, topX, topY); noStroke(); fill(0, 255, 0); ellipse(topX, topY, 10, 10); if (size >= 10) { drawTree((topX+rootX)/2, (topY+rootY)/2, angle-PI/4, size*0.7f); drawTree((topX+rootX)/2, (topY+rootY)/2, angle+PI/4, size*0.6f); } } }
Dieses Video zeigt wie Eclipseprojekte für die Abgabe exportiert werden sollen.
This lecture is not available as a screencast. We will upload the developed source code so you can use it for reference purpose. As we can not guarantee video footage of the lecture it is highly recommended to attend in person.
Ladet euch bitte dieses Archiv runter:
processing
folgt dann den Anweisungen im Video
Um Java mit Eclipse zu entwickeln benötigt ihr folgende Dateien:
Java Development Kit
Eclipse for Java Developers
ladet diese bitte herunter.
folgt dann den Anweisungen im Video:
Die Klausur findet am 06.03.2015 um 9:00 statt. Die Räume sind: 1603/0446/0425
Video repair did not work.
As a little replacement, find a zip archive from the ProbCalc code from the lecture here.
Go through it with the debugger and try to get the idea.