Versions Compared

Key

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

...

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

 


Code Block
void setup()
{
  size(300500,300500);
  background(0255);
  fill(255);
  noLoopstroke(0);
}
   
void draw()
{
  stroke//fill(random(100,200));
  fill(random(50,100)150),random(500,100),random(150,255));
  float size = strokeWeight(random(110,5)100);
  ellipse(random(0,width),random(0,height),random(10,100),random(10,100)size,size);
}
 
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.