Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installieren von Processing

Processing is a programming environment (Integrated development environment IDE) based on the programming language Java. Processing is Open Source and you can download it for free here.

Example 1 - Character output

This example shows how to draw graphics directly to an output window. You can find further drawing functions Processing reference page ( link )ist eine Programmierumgebung(IDE) die auf der Programmiersprache Java basiert. Da Processing Open Source ist könnt ihr es hier frei runterlanden.

Grundübung

Beispiel 1 – Zeichenausgabe

Dieses Beispiel zeigt wie man direkt ohne grosse Umwege zeichnen kann. Hier findet ihr weitere Zeichenbefehle und die Dokumentation der Befehle.


Code Block
languagejava
size(300,300); // define window sizedef. fenstergroesse
  background(0); // define background colour  def. hintergrundfarbe
 smooth(); // aktiviere antialiasing
 stroke(255,255,255); // definedef. linezeichenfarbe
colour 
line(100,10,100,150); // drawzeichne aeine linelinie
  line(150,10,150,200);
 line(200,10,200,250);
fill(0,0,0); // define fill colour def. fuellfarbe
 strokeWeight(5); // linestrichstaerke
thickness 
 ellipse(100,150,50,50); // drawzeichen aneine ellipse
 ellipse(150,200,50,50); // drawzeichen aneine  ellipse
 noFill(); // turnkeine of fillfuellung
 ellipse(200,250,50,50); // drawzeichen an eine ellipse



Beispiel 2 – Komplexe Formen

...