Line 21: | Line 21: | ||
} | } | ||
void draw(){ | void draw(){ | ||
Line 35: | Line 34: | ||
} | } | ||
== Homework 3 == | == Homework 3 == | ||
[[File:chairs_1.gif]] [[File:chairs_2.gif]] | [[File:chairs_1.gif]] [[File:chairs_2.gif]] |
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); }
}