351
edits
No edit summary |
No edit summary |
||
Line 281: | Line 281: | ||
------- | ------- | ||
Viele Ellipsen entstehen und blinken mit Bewegung der Maus vom Mittelpunkt des Fensters aus. 2 Farbtöne dominieren. | |||
[[File:bunteellipsen1.jpg|200]] [[File:bunteellipsen2.jpg|200]] [[File:bunteellipsen3.jpg|200]] | |||
<source lang="java"> | |||
void setup() { | |||
size(screen.width,screen.height); | |||
frameRate(1000); | |||
background(255); | |||
color(0); | |||
smooth(); | |||
} | |||
void draw (){ | |||
noStroke(); | |||
int x = (int)random(255); | |||
int y = (int)random(255); | |||
int z = (int)random(255); | |||
fill(x,100,20); | |||
ellipse(width/2,height/2,mouseX,mouseY); | |||
} | |||
</source> | |||
-------- |
edits