2
0
DefinitelyMaybe 4 жил өмнө
parent
commit
d332129fb4

+ 4 - 4
src/extras/curves/CatmullRomCurve3.js

@@ -89,10 +89,10 @@ class CatmullRomCurve3 extends Curve {
 
 		this.type = 'CatmullRomCurve3';
 		Object.defineProperty( this, 'isCatmullRomCurve3', { value: true } );
-    this.points = points;
-    this.closed = closed;
-    this.curveType = curveType;
-    this.tension = tension;
+		this.points = points;
+		this.closed = closed;
+		this.curveType = curveType;
+		this.tension = tension;
 
 	}