diff --git a/Isosurfacing_3/examples/Isosurfacing_3/all_Cartesian_cube.cpp b/Isosurfacing_3/examples/Isosurfacing_3/all_Cartesian_cube.cpp index 6047b568c27..ff2486c881b 100644 --- a/Isosurfacing_3/examples/Isosurfacing_3/all_Cartesian_cube.cpp +++ b/Isosurfacing_3/examples/Isosurfacing_3/all_Cartesian_cube.cpp @@ -17,7 +17,7 @@ using Grid = CGAL::Isosurfacing::Cartesian_grid_3; using Point_range = std::vector; using Polygon_range = std::vector >; -// return 1.0 if `value` has positive sign, and -1.0 otherwise +// return 1.0 if value has positive sign, and -1.0 otherwise FT sign(FT value) { return (value > 0.0) - (value < 0.0); @@ -30,9 +30,9 @@ int main(int, char**) Grid grid { 7, 7, 7, bbox }; // calculate the value at all grid points - for(std::size_t x=0; x