fixed a typo on angle bound

This commit is contained in:
Mariette Yvinec 2009-05-13 09:26:11 +00:00
parent dfd3312cfa
commit 1532a1e614
3 changed files with 6 additions and 5 deletions

View File

@ -360,8 +360,8 @@ resulting mesh is shown in Figure~\ref{figure:Surface_mesher-skull}.
The guarantees on the output mesh depend on the mesh criteria. The guarantees on the output mesh depend on the mesh criteria.
Theoretical guarantees are given in \cite{cgal:bo-pgsms-05}. Theoretical guarantees are given in \cite{cgal:bo-pgsms-05}.
First, the meshing algorithm is proved to terminate First, the meshing algorithm is proved to terminate
if the angular bound is if the lower bound on facets angles is
not smaller than $30$~degrees. not bigger than $30$~degrees.
Furthermore, the output mesh Furthermore, the output mesh
is guaranteed to be homeomorphic to the surface, is guaranteed to be homeomorphic to the surface,
and there is a guaranteed bound and there is a guaranteed bound

View File

@ -22,13 +22,13 @@ The library provides two overloaded version
of this function: of this function:
\ccThree{1cm}{5cm}{}
\ccGlobalFunction{template <class SurfaceMeshC2T3, \ccGlobalFunction{template <class SurfaceMeshC2T3,
class Surface, class Surface,
class FacetsCriteria, class FacetsCriteria,
class EdgesCriteria, class EdgesCriteria,
class Tag > class Tag >
void make_surface_mesh(SurfaceMeshC2T3& c2t3, void make_piecewise_smooth_surface_mesh(SurfaceMeshC2T3& c2t3,
Surface surface, Surface surface,
FacetsCriteria facets_criteria, FacetsCriteria facets_criteria,
EdgesCriteria edges_criteria, EdgesCriteria edges_criteria,
@ -41,7 +41,7 @@ void make_surface_mesh(SurfaceMeshC2T3& c2t3,
class FacetsCriteria, class FacetsCriteria,
class EdgesCriteria, class EdgesCriteria,
class Tag > class Tag >
void make_surface_mesh(SurfaceMeshC2T3& c2t3, void make_piecewise_smooth_surface_mesh(SurfaceMeshC2T3& c2t3,
SurfaceMeshTraits::Surface_3 surface, SurfaceMeshTraits::Surface_3 surface,
SurfaceMeshTraits traits, SurfaceMeshTraits traits,
FacetsCriteria facets_criteria, FacetsCriteria facets_criteria,

View File

@ -27,6 +27,7 @@ approximating a surface.
The library provides two overloaded version The library provides two overloaded version
of this function: of this function:
\ccThree{2,5cm}{4cm}{}
\ccGlobalFunction{template <class SurfaceMeshC2T3, \ccGlobalFunction{template <class SurfaceMeshC2T3,