correcting coordinate calculations

This commit is contained in:
Danny Yoo 2011-09-16 13:11:49 -04:00
parent 2542f2b1e6
commit 5ccaf1ca46
2 changed files with 9 additions and 4 deletions

View File

@ -10,8 +10,10 @@
(define (mouse world x y type)
(cond
[(string=? type "click")
[(string=? type "move")
(make-posn x y)]
[else
world]))
@ -21,7 +23,7 @@
(posn-y w)
(empty-scene width height)))
(printf "let's see how this works.\n\n")
(big-bang (make-posn 0 0)
(on-mouse mouse)
(to-draw draw))

View File

@ -926,8 +926,11 @@ var rawJsworld = {};
var makeWrapped = function(type) {
return function(e) {
var x = e.pageX, y = e.pageY;
x -= e.target.offsetLeft;
y -= e.target.offsetLeft;
var currentElement = e.target;
do {
x -= currentElement.offsetLeft;
y -= currentElement.offsetTop;
} while(currentElement = currentElement.offsetParent);
preventDefault(e);
stopPropagation(e);
change_world(function(w, k) {