Created
September 1, 2016 02:05
-
-
Save yoursunny/ba32725726ed76f1e2127048facea1c7 to your computer and use it in GitHub Desktop.
move image to clicked position (Processing 3)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PImage img; | |
int curX, curY; | |
int dstX, dstY; | |
void setup() | |
{ | |
size(600, 600); | |
curX = dstX = width / 2; | |
curY = dstY = height / 2; | |
img = loadImage("avatar.jpg"); | |
img.resize(100, 100); | |
imageMode(CENTER); | |
} | |
void draw() | |
{ | |
background(0, 0, 0); | |
if (curX < dstX) { | |
++curX; | |
} | |
else if (curX > dstX) { | |
--curX; | |
} | |
if (curY < dstY) { | |
++curY; | |
} | |
else if (curY > dstY) { | |
--curY; | |
} | |
image(img, curX, curY); | |
} | |
void mouseClicked() | |
{ | |
dstX = mouseX; | |
dstY = mouseY; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment