An algorithm is presented in this section, which adapts a templated mesh in a way that its structure instance is Delaunay.
As shown in Section 4.4, it is not sufficient that all templates are Delaunay. Additionally, every facet in the boundary of a mesh template has to be template-aware locally Delaunay for
to be Delaunay (cf. Lemma 4.5).
Technique
Technique 5.8 recursively inserts vertices in template boundary facets to make them template-aware locally Delaunay. At first, all mesh templates are made Delaunay using flip and Delaunay refinement operations (Line 4). Then, the set of all template facets which are not template-aware locally Delaunay is determined (Line 7).
For each template facet in , its centroid is computed (Line 9). In Line 10 this centroid is inserted in the template facet using the Bowyer-Watson algorithm (cf. Section 3.2.3).
For every template boundary facet , which is related to , the vertex is inserted using a template composition of boundary mappings
, which maps to
(Lines 11-16).
The Bowyer-Watson algorithm preserves the Delaunay property of the mesh templates and does not introduce new vertices (except the centroid which is handled separately) and therefore does not break the conformity of the structure instance.
This process is repeated, until is empty.
Figure 5.16:
A templated mesh is made template-aware Delaunay
A valid templated mesh with one mesh template is visualized (top picture). Neither the mesh template nor the structure instance is Delaunay (triangles which are not Delaunay are highlighted in red). At first, the mesh template is made Delaunay using algorithms presented in Section 3.2. The resulting mesh template is Delaunay but the structure instance is not (middle picture). Inserting vertices at template faces which are not template-aware locally Delaunay yields the final templated mesh, the structure instance of which is Delaunay (bottom picture).
Figure 5.17:
The ping-pong encroachment effect near small angles
Starting with vertices , and , bisecting the facet edge
using its centroid potentially results in an edge
not being locally Delaunay. When inserting vertex into that edge, the edge
might not be locally Delaunay and so on. This iterative process potentially never stops.
A visualization of Technique 5.8 is sketched in Figure 5.16.
There is no formal guarantee that Technique 5.8 stops for arbitrary (valid) inputs. For geometries without acute angles, vertex insertion using the Bowyer-Watson algorithm does not influence other facets which are already template-aware locally Delaunay. However, for geometries with angles less or equal to , a phenomenon called ping-pong encroachment potentially occurs as visualized in Figure 5.17.
A technique called protection balls is used to avoid this issue for classical simplex meshes [90][119][128].
The same approach can also be applied to templated meshes, where the smallest protection ball of all instance vertices and edges is used to determine a better location for the vertex (Line 9).