diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-02-18 21:37:27 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-02-18 21:37:27 +0100 |
commit | 11a9840840fe74574ed259b3546c412a0659ec0d (patch) | |
tree | b4fb0b32ab12894d24fe239bb1b12c09d955f575 /Year_2/IandM/maximum | |
parent | eb95e7518229b8263e870f6c28a4a4f2a00ec065 (diff) |
i&m: value on keypressed
Diffstat (limited to 'Year_2/IandM/maximum')
-rw-r--r-- | Year_2/IandM/maximum/maximum.pde | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Year_2/IandM/maximum/maximum.pde b/Year_2/IandM/maximum/maximum.pde index 4f0f54f..69d69db 100644 --- a/Year_2/IandM/maximum/maximum.pde +++ b/Year_2/IandM/maximum/maximum.pde @@ -1,11 +1,24 @@ +int k = 1; + void setup() { size(512, 256); +} + +void draw() { PImage img = loadImage("lena.png"); img.resize(256, 256); img.filter(GRAY); image(img, 0, 0); - image(maximum(img, 11), 256, 0); + image(maximum(img, k), 256, 0); +} + +void keyPressed() { + if (key == '+') { + k++; + } else if (key == '-') { + k--; + } } PImage maximum(PImage I, int n) { |