fix indentation

This commit is contained in:
Jane Tournois 2021-11-16 17:41:51 +01:00 committed by Jane Tournois
parent cc97d1015f
commit 47046a0ec4
1 changed files with 112 additions and 113 deletions

View File

@ -68,8 +68,7 @@ bool add_1D_features(const CGAL::Image_3& image,
const double vx = image.vx(); const double vx = image.vx();
const double vy = image.vy(); const double vy = image.vy();
const double vz = image.vz(); const double vz = image.vz();
const double dist_bound = (std::min)(vx, const double dist_bound = (std::min)(vx, (std::min)(vy, vz)) / 256;
(std::min)(vy, vz)) / 256;
const double sq_dist_bound = dist_bound * dist_bound; const double sq_dist_bound = dist_bound * dist_bound;
const std::size_t xdim = image.xdim(); const std::size_t xdim = image.xdim();
@ -132,7 +131,7 @@ bool add_1D_features(const CGAL::Image_3& image,
const bool case_found = (case_it != end(cases)); const bool case_found = (case_it != end(cases));
if (case_found) reference_cube = combinations[(*case_it)[8]]; if (case_found) reference_cube = combinations[(*case_it)[8]];
else { else {
// std::cerr << "Warning: case not found: " << reference_cube << '\n'; //std::cerr << "Warning: case not found: " << reference_cube << '\n';
CGAL_error(); CGAL_error();
}; };
#ifdef CGAL_DEBUG_TRIPLE_LINES #ifdef CGAL_DEBUG_TRIPLE_LINES