Jordan Sinclair Project 0
Both projects can be view at:
http://jordansinclair.com/STIA/Proj0-1/ <–sin wave
http://jordansinclair.com/STIA/Proj0-2/ <–Pong
GDE Error: Unable to load profile settings
So, I realized that Noll used a black and white printer and monitor to display his piece… He really had color in there 🙂
Here’s the ugly loop, unabridged:
for (int j = 0; j < 90; j++){
noFill();
stroke(r, g, bee);
beginShape();
float b = .125;
for (int i = 0; i < width+xOffset; i++){
float x = i-xOffset;
float c = PI;
float y = yOffset + topPadding + (amplitude*sin(radians(i)/b));
b += .00054;
curveVertex(x,y);
}
endShape();
r-=(252/90);
g-=(164/90);
yOffset += 5;
}
And now for pong:
http://jordansinclair.com/STIA/Proj0-2/
since the iFrame thing is wack.
test