소스 검색

Exampels: Fix copy/paste error

Mugen87 7 년 전
부모
커밋
c0e5d2504a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/canvas_lines_dashed.html

+ 1 - 1
examples/canvas_lines_dashed.html

@@ -69,7 +69,7 @@
 				var spline = new THREE.CatmullRomCurve3( points );
 
 				var samples = spline.getPoints( points.length * subdivisions );
-				var geometrySpline = new THREE.BufferGeometry().setFromPoints( samples );
+				var geometrySpline = new THREE.Geometry().setFromPoints( samples );
 
 				var geometryCube = cube( 50 );