소스 검색

RoundedBoxBufferGeometry: Clean up.

Mr.doob 4 년 전
부모
커밋
45b0103e4d
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      examples/jsm/geometries/RoundedBoxBufferGeometry.js

+ 1 - 5
examples/jsm/geometries/RoundedBoxBufferGeometry.js

@@ -50,11 +50,7 @@ class RoundedBoxBufferGeometry extends BoxBufferGeometry {
 		super( 1, 1, 1, segments, segments, segments );
 
 		// if we just have one segment we're the same as a regular box
-		if ( segments === 1 ) {
-
-			return;
-
-		}
+		if ( segments === 1 ) return;
 
 		const geometry2 = this.toNonIndexed();