fixed getIntersections bug

This commit is contained in:
Eric Rowell
2012-08-26 11:00:18 -07:00
parent 5e6c8774e8
commit 79a1029adb
6 changed files with 35 additions and 33 deletions

View File

@@ -13,6 +13,10 @@
window.onload = function() {
var test = new Test();
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>
</head>