Fix example name

This commit is contained in:
Mael Rouxel-Labbé 2024-02-28 00:47:54 +01:00
parent 6a55f88323
commit 5c808da22a
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
\example Isosurfacing_3/contouring_image.cpp
\example Isosurfacing_3/contouring_implicit_data.cpp
\example Isosurfacing_3/contouring_mesh_offset.cpp
\example Isosurfacing_3/contouring_octree.cpp
\example Isosurfacing_3/dual_contouring_octree.cpp
\example Isosurfacing_3/dual_contouring.cpp
\example Isosurfacing_3/marching_cubes.cpp
*/

View File

@ -42,7 +42,7 @@ namespace Isosurfacing {
*/
template <typename Partition,
typename ValueField,
typename EdgeIntersectionOracle = CGAL::Isosurfacing::Dichotomy_edge_intersection>
typename EdgeIntersectionOracle = CGAL::Isosurfacing::Linear_interpolation_edge_intersection>
class Marching_cubes_domain_3
#ifndef DOXYGEN_RUNNING
: public internal::Isosurfacing_domain_3<Partition, ValueField, EdgeIntersectionOracle>
@ -87,7 +87,7 @@ public:
*/
template <typename Partition,
typename ValueField,
typename EdgeIntersectionOracle = Dichotomy_edge_intersection>
typename EdgeIntersectionOracle = Linear_interpolation_edge_intersection>
Marching_cubes_domain_3<Partition, ValueField, EdgeIntersectionOracle>
create_marching_cubes_domain_3(const Partition& partition,
const ValueField& values,