Skip to content

Instantly share code, notes, and snippets.

@yoursunny
Created September 1, 2016 02:05
Show Gist options
  • Save yoursunny/ba32725726ed76f1e2127048facea1c7 to your computer and use it in GitHub Desktop.
Save yoursunny/ba32725726ed76f1e2127048facea1c7 to your computer and use it in GitHub Desktop.
move image to clicked position (Processing 3)
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