Update index.php

This commit is contained in:
awesomeuser 2023-08-04 15:16:14 +00:00
parent 28ec61891f
commit 0356c8776f

View file

@ -133,8 +133,8 @@
};
function draw(e) {
var posX = ((e.clientX - crect.left) * canvas.width) / crect.width - 1;
var posY = ((e.clientY - crect.top) * canvas.height) / crect.height - 1;
var posX = ((e.clientX - crect.left) * canvas.width) - 1; // / crect.width
var posY = ((e.clientY - crect.top) * canvas.height) - 1;
ctx.putImageData(pen, posX, posY);
}