mirror of https://github.com/CGAL/cgal
Fix example name
This commit is contained in:
parent
6a55f88323
commit
5c808da22a
|
|
@ -3,7 +3,7 @@
|
||||||
\example Isosurfacing_3/contouring_image.cpp
|
\example Isosurfacing_3/contouring_image.cpp
|
||||||
\example Isosurfacing_3/contouring_implicit_data.cpp
|
\example Isosurfacing_3/contouring_implicit_data.cpp
|
||||||
\example Isosurfacing_3/contouring_mesh_offset.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/dual_contouring.cpp
|
||||||
\example Isosurfacing_3/marching_cubes.cpp
|
\example Isosurfacing_3/marching_cubes.cpp
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ namespace Isosurfacing {
|
||||||
*/
|
*/
|
||||||
template <typename Partition,
|
template <typename Partition,
|
||||||
typename ValueField,
|
typename ValueField,
|
||||||
typename EdgeIntersectionOracle = CGAL::Isosurfacing::Dichotomy_edge_intersection>
|
typename EdgeIntersectionOracle = CGAL::Isosurfacing::Linear_interpolation_edge_intersection>
|
||||||
class Marching_cubes_domain_3
|
class Marching_cubes_domain_3
|
||||||
#ifndef DOXYGEN_RUNNING
|
#ifndef DOXYGEN_RUNNING
|
||||||
: public internal::Isosurfacing_domain_3<Partition, ValueField, EdgeIntersectionOracle>
|
: public internal::Isosurfacing_domain_3<Partition, ValueField, EdgeIntersectionOracle>
|
||||||
|
|
@ -87,7 +87,7 @@ public:
|
||||||
*/
|
*/
|
||||||
template <typename Partition,
|
template <typename Partition,
|
||||||
typename ValueField,
|
typename ValueField,
|
||||||
typename EdgeIntersectionOracle = Dichotomy_edge_intersection>
|
typename EdgeIntersectionOracle = Linear_interpolation_edge_intersection>
|
||||||
Marching_cubes_domain_3<Partition, ValueField, EdgeIntersectionOracle>
|
Marching_cubes_domain_3<Partition, ValueField, EdgeIntersectionOracle>
|
||||||
create_marching_cubes_domain_3(const Partition& partition,
|
create_marching_cubes_domain_3(const Partition& partition,
|
||||||
const ValueField& values,
|
const ValueField& values,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue