//Alex Potmesil assign C
//"hypnotised", Oakenfold
size(400, 400);
background (0);
noFill(); //strings/background
stroke(100);
for (int x=400; x>1; x -=9) {
ellipse(280, 300, x, x);
}
for (int x=750; x>1; x -=23) {
strokeWeight(3);
ellipse(275, 280, x, x);
}
for (int x=600; x>1; x -=17) {
strokeWeight(1.5);
ellipse(276, 291, x, x);
}
//drum/bass
strokeWeight (5);
stroke (75);
for (int a =14; a <=265; a += 6) {
if ((a % 10) == 0) {
line (2, a, 305, a);
} else {
line (275, a, 395, a);
}
}
//vocal
stroke(200);
for (int x=311; x>9; x -=50) {
rect(x, 75, x, 210);
}
strokeWeight(1.5);
for (int x=140; x>5; x -=90) {
rect(x, 65, x, 160);
}
for (int x=140; x>25; x -=18){
rect(x, 240, x, 19);
}
Alex - C
on Monday, Oct 20, 2008 – 11:09 am