Jesper Oskarsson 10 лет назад
Родитель
Сommit
0a2a0a066c
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      docs/api/core/Raycaster.html

+ 2 - 2
docs/api/core/Raycaster.html

@@ -23,8 +23,8 @@
 			// calculate mouse position in normalized device coordinates
 			// calculate mouse position in normalized device coordinates
 			// (-1 to +1) for both components
 			// (-1 to +1) for both components
 
 
-			mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1
-			mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1		
+			mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1;
+			mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1;		
 		
 		
 		}
 		}