Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Zufallszahlen werden in der Programmierung häufig genutzt, sei es nun für das verschlüsseln von Daten oder halt für generative Gestaltung. Processing bietet hier einfache Funktionen:

random([unteres Limit],[oberes Limit])  oder random([0 - oberes Limit])


void setup()
{
  size(300,300);
  background(0);
  noLoop();
}
 
void draw()
{
  stroke(random(100,200));
  fill(random(50,100),random(50,100),random(150,255));
  strokeWeight(random(1,5));
  ellipse(random(0,width),random(0,height),random(10,100),random(10,100));
}
 
void mousePressed()
{
  redraw();
}


Aufgabe

Erweitere das Beispiel so, dass die Füllfarbe der Ellipse abhängig von der Grösse der Ellipse ist(Durchmesser). Je grösser desto rötlicher soll die Ellipse sein.