xxxxxxxxxx
60
var img;
var distance = 50;
var x;
var y;
function preload(){
img = loadImage('assets/arana.jpg');
}
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
x = mouseX;
y = mouseY;
textAlign(CENTER);
text("dessine avec ton araignée", width/2, height/2);
}
function mouseDragged(){
var d = dist(x, y, mouseX, mouseY);
if (d > distance){
image(img, mouseX, mouseY, img.width/17, img.height/10);
x = mouseX;
y = mouseY;
}
}
function draw() {
}
function keyReleased(){
if (key == 's' || key == 'S') {
saveCanvas(year()+month()+day()+'-'+hour()+ minute() + second() +'_pixels'+ '.jpg');
}
}