Skip to content

Commit

Permalink
[#27] Convex hull outlier threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
ilia-glushchenko committed Nov 24, 2018
1 parent f079a26 commit b3bffd1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 535 deletions.
2 changes: 1 addition & 1 deletion Epona/include/Epona/JacobiEigenvalue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ inline std::tuple<glm::mat3, glm::vec3> CalculateJacobiEigenvectorsEigenvalue(
}
while ((++iterations < maxIterations) && (glm::abs(symmetricMatrix[i][j]) > coverageThreshold));

return { eigenvectors, { symmetricMatrix[0][0], symmetricMatrix[1][1], symmetricMatrix[2][2] } };
return std::tuple<glm::mat3, glm::vec3>{ eigenvectors, glm::vec3{ symmetricMatrix[0][0], symmetricMatrix[1][1], symmetricMatrix[2][2] } };
}

/**
Expand Down
Loading

0 comments on commit b3bffd1

Please sign in to comment.