소스 검색

Added spaces after signs

Elias Hasle 7 년 전
부모
커밋
5367821230
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/cameras/OrthographicCamera.js

+ 2 - 2
src/cameras/OrthographicCamera.js

@@ -15,10 +15,10 @@ function OrthographicCamera( left, right, top, bottom, near, far ) {
 	this.zoom = 1;
 	this.view = null;
 
-	this.left = ( left !== undefined ) ? left : -1;
+	this.left = ( left !== undefined ) ? left : - 1;
 	this.right = ( right !== undefined ) ? right : 1;
 	this.top = ( top !== undefined ) ? top : 1;
-	this.bottom = ( bottom !== undefined ) ? bottom : -1;
+	this.bottom = ( bottom !== undefined ) ? bottom : - 1;
 
 	this.near = ( near !== undefined ) ? near : 0.1;
 	this.far = ( far !== undefined ) ? far : 2000;