Explorar el Código

TubeBufferGeometry: Removed invisible char (#9943)

Michael Herzog hace 9 años
padre
commit
ca47f6ddb7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/geometries/TubeBufferGeometry.js

+ 1 - 1
src/geometries/TubeBufferGeometry.js

@@ -27,7 +27,7 @@ function TubeBufferGeometry( path, tubularSegments, radius, radialSegments, clos
 	tubularSegments = tubularSegments || 64;
 	radius = radius || 1;
 	radialSegments = radialSegments || 8;
-	closed = closed || false;
+	closed = closed || false;
 
 	var frames = path.computeFrenetFrames( tubularSegments, closed );