xxxxxxxxxx
void setup()
{
size(500,500);
background(0,0,0);
}
void draw()
{
//background(255);
fill(255,10);
rect(0,0,width,height); // macht dass es additiv zeichnet aber der immer wieder neu
translate(width/2,height/2);
pushMatrix();
float x=cos(millis()/900.0);
float y=sin(millis()/300.0);
float h=map(y,-1,1,0,270);
noStroke();
colorMode(HSB,360,100,100);
fill(h,100,100);
ellipse(200*y,200*x,100,100);
popMatrix();
}