DefinitelyMaybe před 4 roky
rodič
revize
d332129fb4
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4 4
      src/extras/curves/CatmullRomCurve3.js

+ 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;
 
 	}