13 #include <Euclid/MeshUtil/MeshDefs.h> 23 template<
typename Mesh>
24 bool is_delaunay(
const Mesh& mesh,
double eps = 1e-14);
31 template<
typename Mesh>
32 bool is_delaunay(
const Mesh& mesh, edge_t<Mesh> e,
double eps = 1e-14);
73 template<
typename Mesh>
88 template<
typename Mesh>
135 template<
typename Mesh>
148 template<
typename Mesh,
typename Visitor>
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
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