|
@@ -7,6 +7,7 @@
|
|
|
* .getPointAt(u), getTagentAt(u)
|
|
|
* .getPoints(), .getSpacedPoints()
|
|
|
* .getLength()
|
|
|
+ * .updateArcLengths()
|
|
|
*
|
|
|
* This file contains following classes:
|
|
|
*
|
|
@@ -25,6 +26,8 @@
|
|
|
* THREE.SplineCurve3
|
|
|
* THREE.ClosedSplineCurve3
|
|
|
*
|
|
|
+ * A series of curves can be represented as a THREE.CurvePath
|
|
|
+ *
|
|
|
**/
|
|
|
|
|
|
/**************************************************************
|
|
@@ -221,7 +224,7 @@ THREE.Curve.prototype.getUtoTmapping = function ( u, distance ) {
|
|
|
|
|
|
// add that fractional amount to t
|
|
|
|
|
|
- t = ( i + segmentFraction ) / ( il -1 );
|
|
|
+ var t = ( i + segmentFraction ) / ( il -1 );
|
|
|
|
|
|
return t;
|
|
|
|