Fixed minor typo in SplineFitting.

This commit is contained in:
Hauke Heibel 2016-01-25 22:17:52 +01:00
parent 8328caa618
commit 5eb2790be0

View File

@ -167,7 +167,7 @@ namespace Eigen
derivativeKnots.data(), derivativeKnots.data() + derivativeKnots.size(),
temporaryKnots.data());
// Number of control points (one for each point and derivative) plus spline order.
// Number of knots (one for each point and derivative) plus spline order.
DenseIndex numKnots = numParameters + numDerivatives + degree + 1;
knots.resize(numKnots);