
I got terrible score in color hue test, very very sad.
About a month ago, I found interesting logic to make shape during doing ICM assignment. I tried arranging the texts in spiral form, but what I got was this weird pattern . Hm, looks interesting.

I adjusted some variables, and tried connecting the dots and add some brightness change for each line.


Wooh, looks good, I am not sure it can be called as a composition though.. then time to play with color. I added variable for hue value, it starts from 0 and specific value is added to value every frame.


For this case, I only changed the bright value.


Time to change saturation, I didn’t know what ‘saturation’ exactly means, but this sketch shows what it is to me!

Here are some sketches that I could get by changing the values in sketch. Oh, fun!


Code is super simple, so I just wanna paste the code in here.
float a = 0;
float d = 3;
float c = 0;
float arcLength = 0;
float w;
void setup() {
size(800, 600);
colorMode(HSB);
frameRate(20);
background(0);
}
void draw() {
//textFont(font);
//w = textWidth(‘a’);
w = 9.8;// ->hexagon!!!
arcLength +=w/2;
float theta = PI + arcLength/d;
a += theta/100;
d+=5.8;
strokeWeight(5);
// stroke(0,255,255); //
stroke(color(c,100,200));
// stroke(c);
line(width/2+d*cos(a), height/2+d*sin(a),width/2+(d+5)*cos(a+theta), height/2+(d+5)*sin(a+theta));
c+=1.49;
}