We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I have created a quick, abstract sketch. The URL is bleubox.altervista.org/lemonFlower.html. More of my sketches are shown here: bleubox.altervista.org/productions.html. If anybody would like to modify the code of the program (below) and have it displayed as a variation on the website (I would also credit the person who created the modified program, unless they wish to remain anonymous), they can post their modified code in this discussion, and how they would like to be credited.
float xt, yt;
float n;
float nt;
float angle = 0;
void setup() {
size(600, 600);
}
void draw() {
translate(300, 300);
rotate(n);
xt = (0 + noise(nt) * 10) + cos(angle) * (50);
yt = (0 + noise(nt) * 10) + sin(angle) * (50);
stroke(#FAD577);
point(xt, yt);
stroke(#FAD577, 100);
line(xt, yt, 0, 0);
angle += 0.01;
n += 0.005;
nt += 0.1;
}
void mousePressed() {
save("lemonFlower.tif");
}
Comments
beautiful....!
Thanks!
to be published without my name
Thank you. I have added it to the site.
thanks!
Great games!
Kf
Thanks. I am working on another program that simulates an airplane.