瀏覽代碼

Added missing semicolons

Jesper Oskarsson 10 年之前
父節點
當前提交
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
 			// (-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;		
 		
 		}