small compilation fix in mlsfilter

This commit is contained in:
Gael Guennebaud guennebaud 2008-10-28 11:44:36 +00:00
parent 3075edf872
commit 17b1bca5ec

View File

@ -297,7 +297,7 @@ bool RIMLS<_MeshType>::mlsHessian(const VectorType& x, MatrixType& hessian) cons
- sumGradWeight * mCachedGradient[k]
- mCachedGradient * sumGradWeight[k] ) * invW;
hessian.col(k) = dGrad;
hessian.SetColumn(k,dGrad);
}
return true;