Line 33: | Line 33: | ||
copy(img, x, i, width, height, x, i, width, height); | copy(img, x, i, width, height, x, i, width, height); | ||
} | } | ||
} | } |
Revision as of 12:48, 17 December 2015
Katja Bliß
Homework 1
Homework 2
PImage img;
PImage sourceImage;
void setup(){
size(500, 500); sourceImage = loadImage ("bild2.jpg"); image (sourceImage, 0, 0, 500, 500);
}
void draw(){
img = loadImage ("bild3.jpg"); int x = 30; int width = 450; int height = 10; img.resize(500, 500); for (int i = 40; i < 441; i = i + 20) { copy(img, x, i, width, height, x, i, width, height); }
}