소스 검색

added missing export statement to PolarGridHelper.js

Hectate 8 년 전
부모
커밋
51c0ea791f
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/extras/helpers/PolarGridHelper.js

+ 3 - 1
src/extras/helpers/PolarGridHelper.js

@@ -90,4 +90,6 @@ function PolarGridHelper( radius, radials, circles, divisions, color1, color2 )
 }
 
 PolarGridHelper.prototype = Object.create( LineSegments.prototype );
-PolarGridHelper.prototype.constructor = PolarGridHelper;
+PolarGridHelper.prototype.constructor = PolarGridHelper;
+
+export { PolarGridHeler };