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