Update index.php
This commit is contained in:
parent
0356c8776f
commit
480ece73e4
1 changed files with 2 additions and 2 deletions
|
@ -133,8 +133,8 @@
|
|||
};
|
||||
|
||||
function draw(e) {
|
||||
var posX = ((e.clientX - crect.left) * canvas.width) - 1; // / crect.width
|
||||
var posY = ((e.clientY - crect.top) * canvas.height) - 1;
|
||||
var posX = (e.clientX - crect.left) * crect.width / canvas.width - 1;
|
||||
var posY = (e.clientY - crect.top) * crect.height / canvas.height - 1;
|
||||
|
||||
ctx.putImageData(pen, posX, posY);
|
||||
}
|
||||
|
|
Reference in a new issue