Skip to content

Commit

Permalink
Update Polygon_mesh_processing/test/Polygon_mesh_processing/remeshing…
Browse files Browse the repository at this point in the history
…_quality_test.cpp

Co-authored-by: Andreas Fabri <[email protected]>
  • Loading branch information
ipadjen and afabri authored Sep 22, 2023
1 parent 7c7fd1d commit 185c6e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int main(int argc, char* argv[])
std::cout << "Remeshing done, checking triangle quality...\n" << std::endl;
double qmin = (std::numeric_limits<double>::max)(); // minimum triangle quality
double qavg = 0.; // average quality
double min_angle = std::numeric_limits<double>::max(); // minimum angle
double min_angle = (std::numeric_limits<double>::max)(); // minimum angle
double avg_min_angle = 0.; // average minimum angle
for (auto face : mesh.faces())
{
Expand Down

0 comments on commit 185c6e7

Please sign in to comment.