Skip to content

Commit

Permalink
Merge pull request #5873 from ZhuLingfeng1993/fix_nurbs
Browse files Browse the repository at this point in the history
[surface] Speed up nurbs surface fitting
  • Loading branch information
mvieth authored Nov 16, 2023
2 parents 95504e6 + 60549ec commit 84aa570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion surface/src/on_nurbs/nurbs_solve_eigen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ NurbsSolve::solve ()
{
// m_xeig = m_Keig.colPivHouseholderQr().solve(m_feig);
// Eigen::MatrixXd x = A.householderQr().solve(b);
m_xeig = m_Keig.jacobiSvd (Eigen::ComputeThinU | Eigen::ComputeThinV).solve (m_feig);
m_xeig = m_Keig.completeOrthogonalDecomposition().solve (m_feig);

return true;
}
Expand Down

0 comments on commit 84aa570

Please sign in to comment.