fix typo in unused function

This commit is contained in:
korialis 2021-11-26 16:34:23 +01:00
parent f2ba3e973e
commit d55c7aa215
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ private:
const Point3<ScalarType> & fNormal = NormalizedTriangleNormal(**it);
const auto tot = std::accumulate(++ff.begin(), ff.end(), 0.d, [&](const Scalartype acc, const FaceType * f) {
const auto tot = std::accumulate(++ff.begin(), ff.end(), 0.d, [&](const ScalarType acc, const FaceType * f) {
return acc + (1 - math::Abs(fastAngle(n, NormalizedTriangleNormal(*f))));
});