Removing Topics from SVN

This commit is contained in:
Casey Reas
2011-09-05 23:44:10 +00:00
parent b99624cdb4
commit 4fc6dcca86
219 changed files with 0 additions and 31091 deletions
@@ -1,43 +0,0 @@
/**
* Linear Image.
*
* Click and drag mouse up and down to control the signal.
* Press and hold any key to watch the scanning.
*
* Updated 28 February 2010.
*/
PImage img;
int direction = 1;
float signal;
void setup() {
size(200, 200);
stroke(255);
img = loadImage("florence03.jpg");
img.loadPixels();
loadPixels();
}
void draw() {
if (signal > img.height-1 || signal < 0) {
direction = direction * -1;
}
if (mousePressed) {
signal = abs(mouseY % img.height);
} else {
signal += (0.3*direction);
}
if (keyPressed) {
set(0, 0, img);
line(0, signal, img.width, signal);
} else {
int signalOffset = int(signal)*img.width;
for (int y = 0; y < img.height; y++) {
arrayCopy(img.pixels, signalOffset, pixels, y*width, img.width);
}
updatePixels();
}
}