2
0
Эх сурвалжийг харах

Pure annotations house cleaning: Fix CatmullRomCurve3 formatting (#24209)

* Pure annotations house cleaning: Fix CatmullRomCurve3 formatting

* Update CatmullRomCurve3.js

Co-authored-by: mrdoob <[email protected]>
Patrick Schroen 3 жил өмнө
parent
commit
72284257e4

+ 3 - 1
src/extras/curves/CatmullRomCurve3.js

@@ -79,7 +79,9 @@ function CubicPoly() {
 //
 
 const tmp = /*@__PURE__*/ new Vector3();
-const px = /*@__PURE__*/ new CubicPoly(), /*@__PURE__*/ py = new CubicPoly(), /*@__PURE__*/ pz = new CubicPoly();
+const px = /*@__PURE__*/ new CubicPoly();
+const py = /*@__PURE__*/ new CubicPoly();
+const pz = /*@__PURE__*/ new CubicPoly();
 
 class CatmullRomCurve3 extends Curve {