Euclid
Geometry Processing and Shape Analysis in C++
DelaunayMesh.h
1 
11 #pragma once
12 
13 #include <Euclid/MeshUtil/MeshDefs.h>
14 
15 namespace Euclid
16 {
23 template<typename Mesh>
24 bool is_delaunay(const Mesh& mesh, double eps = 1e-14);
25 
31 template<typename Mesh>
32 bool is_delaunay(const Mesh& mesh, edge_t<Mesh> e, double eps = 1e-14);
33 
38 {
45  SimpleFlip,
46 
53 
61 };
62 
73 template<typename Mesh>
74 struct SplitSite
75 {
76  edge_t<Mesh> epq;
77  vertex_t<Mesh> vs;
78  halfedge_t<Mesh> hps;
79  halfedge_t<Mesh> hqs;
80  halfedge_t<Mesh> hus;
81  halfedge_t<Mesh> hvs;
82 };
83 
88 template<typename Mesh>
90 {
94  void on_started(Mesh&) {}
95 
99  void on_finished(Mesh&) {}
100 
104  void on_flipping(Mesh&, const edge_t<Mesh>&) {}
105 
109  void on_flipped(Mesh&, const edge_t<Mesh>&) {}
110 
114  void on_nonflippable(Mesh&, const edge_t<Mesh>&) {}
115 
120  void on_splitting(Mesh&, const edge_t<Mesh>&) {}
121 
126  void on_split(Mesh&, const SplitSite<Mesh>&) {}
127 };
128 
135 template<typename Mesh>
136 void remesh_delaunay(
137  Mesh& mesh,
139  double dihedral_angle = 10.0);
140 
148 template<typename Mesh, typename Visitor>
149 void remesh_delaunay(
150  Mesh& mesh,
151  Visitor& visitor,
153  double dihedral_angle = 10.0);
154 
156 } // namespace Euclid
157 
158 #include "src/DelaunayMesh.cpp"
A dumb remesh delaunay visitor.
Definition: DelaunayMesh.h:89
Just flip non-locally Delaunay edges untils they disappear.
A combination of the simple flip and geometry presvering scheme.
bool is_delaunay(const Mesh &mesh, edge_t< Mesh > e, double eps=1e-14)
Test if an edge is locally Delaunay.
Definition: DelaunayMesh.cpp:315
void on_splitting(Mesh &, const edge_t< Mesh > &)
Called before splitting an edge.
Definition: DelaunayMesh.h:120
RemeshDelaunayScheme
Schemes for remeshing a mesh to be Delaunay.
Definition: DelaunayMesh.h:37
FT_t< Mesh > dihedral_angle(edge_t< Mesh > e, const Mesh &mesh)
Dihedral angle between adjacent faces.
Definition: TriMeshGeometry.cpp:246
Definition: AABB.h:6
Combine edge flip with edge split.
void on_finished(Mesh &)
Called after algorithm finishes.
Definition: DelaunayMesh.h:99
void remesh_delaunay(Mesh &mesh, Visitor &visitor, RemeshDelaunayScheme scheme=RemeshDelaunayScheme::SimpleFlip, double dihedral_angle=10.0)
Remesh an arbitary mesh into Delaunay mesh.
Definition: DelaunayMesh.cpp:331
void on_flipping(Mesh &, const edge_t< Mesh > &)
Called before flipping an edge.
Definition: DelaunayMesh.h:104
void on_flipped(Mesh &, const edge_t< Mesh > &)
Called after flipping an edge.
Definition: DelaunayMesh.h:109
void on_started(Mesh &)
Called before algorithm starts.
Definition: DelaunayMesh.h:94
The local mesh elements when splitting.
Definition: DelaunayMesh.h:74
void on_split(Mesh &, const SplitSite< Mesh > &)
Called after splitting an edge.
Definition: DelaunayMesh.h:126
void on_nonflippable(Mesh &, const edge_t< Mesh > &)
Called if an edge is not flippable.
Definition: DelaunayMesh.h:114