mirror of https://github.com/CGAL/cgal
fix indentation
This commit is contained in:
parent
cc97d1015f
commit
47046a0ec4
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue