No edit summary |
|||
Line 10: | Line 10: | ||
[[File:Rillen.gif]] | [[File:Rillen.gif]] | ||
<source lang="java"> | |||
PImage img; | PImage img; | ||
PImage sourceImage; | PImage sourceImage; | ||
Line 34: | Line 34: | ||
} | } | ||
</source> | |||
== Homework 3 == | == Homework 3 == | ||
[[File:chairs_1.gif]] [[File:chairs_2.gif]] | [[File:chairs_1.gif]] [[File:chairs_2.gif]] |
Revision as of 13:29, 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);
}
}