This commit is contained in:
Andreas Fabri 2024-04-04 09:33:05 +01:00
parent 81174d205a
commit 60a7f92bac
4 changed files with 4 additions and 13 deletions

View File

@ -88,8 +88,8 @@ using the \cgal \ref PkgMesh3 package, and consecutive consistent isotropic reme
as shown by \cgalFigureRef{sphere_sizing_field}.
Note that the refined mesh is denser than the one generated by `CGAL::make_mesh_3()`.
This happens because here, the sizing field is used both as a lower and an upper bound for
edge lengths, though in mesh generation it is used only as an upper bound
on simplices sizes.
edge lengths, whereas in mesh generation it is used only as an upper bound
on simplex sizes.
\cgalFigureBegin{sphere_sizing_field, sphere_with_sizing.png}
Tetrahedral mesh, modified by our uniform tetrahedral remeshing method.
@ -128,7 +128,7 @@ are ignored by the remeshing algorithm.
\cgalExample{Tetrahedral_remeshing/tetrahedral_remeshing_example.cpp }
\subsection ssecEx2 Tetrahedral Remeshing of A Selection
\subsection ssecEx2 Tetrahedral Remeshing of a Selection
Optional BGL named parameters offer more precise
control on the remeshing process. In this example, a triangulation with two subdomains

View File

@ -5,10 +5,6 @@
#include "tetrahedral_remeshing_generate_input.h"
#include <iostream>
#include <fstream>
#include <string>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Tetrahedral_remeshing::Remeshing_triangulation_3<K> Remeshing_triangulation;

View File

@ -5,11 +5,6 @@
#include <CGAL/property_map.h>
#include <unordered_set>
#include <iostream>
#include <utility>
#include <cassert>
#include "tetrahedral_remeshing_generate_input.h"
using K = CGAL::Exact_predicates_inexact_constructions_kernel;

View File

@ -48,7 +48,7 @@ namespace Tetrahedral_remeshing
* A sizing field for tetrahedral remeshing,
* that keeps the same mesh density throughout the remeshing process.
*
* \cgalModels{`RemeshingSizingField_3`}
* \cgalModels{RemeshingSizingField_3}
*/
template <typename Tr>
class Adaptive_remeshing_sizing_field