halfedge.md 9.99 KB
Newer Older
Hui Wang's avatar
Hui Wang committed
1
2
[[Home]](../index) [[Mesh Edit]](../meshedit/overview) [[Path Tracer]](../pathtracer/overview) [[Animation]](../animation/overview)

TheNumbat's avatar
TheNumbat committed
3
4
---

Hui Wang's avatar
Hui Wang committed
5

TheNumbat's avatar
TheNumbat committed
6
7
8
9
10
11
12
13
14
15
# Halfedge Mesh

## Geometric Data Structures

Scotty3D uses a variety of geometric data structures, depending on the task. Some operations (e.g., ray tracing) use a simple list of triangles that can be compactly encoded and efficiently cached. For more sophisticated geometric tasks like mesh editing and sampling, a simple triangle list is no longer sufficient (or leads to unnecessarily poor asymptotic performance). Most actions in MeshEdit mode therefore use a topological data structure called a _halfedge mesh_ (also known as a _doubly-connected_ edge list), which provides a good tradeoff between simplicity and sophistication.

### The Halfedge Data Structure

The basic idea behind the halfedge data structure is that, in addition to the usual vertices, edges, and faces that make up a polygonal mesh, we also have an entity called a _halfedge_ that acts like "glue" connecting the different elements. It is this glue that allow us to easily "navigate" the mesh, i.e., easily access mesh elements adjacent to a given element.

allai5's avatar
allai5 committed
16
<center><img src="halfedge_pointers.png" style="height:240px"></center>
TheNumbat's avatar
TheNumbat committed
17

TheNumbat's avatar
TheNumbat committed
18
In particular, there are two halfedges associated with each edge (see picture above). For an edge connecting two vertices i and j, one of its halfedges points from i to j; the other one points from j to i. In other words, we say that the two halfedges are _oppositely oriented_. One of the halfedges is associated with the face to the "left" of the edge; the other is associated with the face to the "right." Each halfedge knows about the opposite halfedge, which we call its _twin_. It also knows about the _next_ halfedge around its face, as well as its associated edge, face, and vertex.
TheNumbat's avatar
TheNumbat committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

In contrast, the standard mesh elements (vertices, edges, and faces) know only about _one_ of their halfedges. In particular:

*   a vertex knows about one of its "outgoing" halfedges,
*   an edge knows about one of its two halfedges, and
*   a face knows about one of the many halfedges circulating around its interior.

In summary, we have the following relationships:

| Mesh Element | Pointers                       |
| ------------ | ------------------------------ |
| Vertex       | halfedge (just one)            |
| Edge         | halfedge (just one)            |
| Face         | halfedge (just one)            |
| Halfedge     | next, twin, vertex, edge, face |

This list emphasizes that it is really the **halfedges** that connect everything up. An easy example is if we want to visit all the vertices of a given face. We can start at the face's halfedge, and follow the "next" pointer until we're back at the beginning. A more interesting example is visiting all the vertices adjacent to a given vertex v. We can start by getting its outgoing halfedge, then its twin, then its next halfedge; this final halfedge will also point out of vertex v, but it will point **toward** a different vertex than the first halfedge. By repeating this process, we can visit all the neighboring vertices:

allai5's avatar
allai5 committed
37
<center><img src="vertex_traversal.png" style="height:360px"></center>
TheNumbat's avatar
TheNumbat committed
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

In some sense, a halfedge mesh is kind of like a supercharged linked list. For instance, the halfedges around a given face (connected by `next` pointers) form a sort of "cyclic" linked list, where the tail points back to the head.

A nice consequence of the halfedge representation is that any valid halfedge mesh **must** be manifold and orientable. Scotty3D will therefore only produce manifold, oriented meshes as output (and will complain if the input does not satisfy these criteria).

### The `Halfedge_Mesh` Class

The Scotty3D skeleton code already provides a fairly sophisticated implementation of the half edge data structure, in the `Halfedge_Mesh` class (see `geometry/halfedge.h` and `geometry/halfedge.cpp`). Although the detailed implementation may appear a bit complicated, the basic interface is not much different from the abstract description given above. For instance, suppose we have a face f and want to print out the positions of all its vertices. We would write a routine like this:

    void printVertexPositions(FaceRef f) {
      HalfEdgeRef h = f->halfedge(); // get the first halfedge of the face
      do {
        VertexRef v = h->vertex();   // get the vertex of the current halfedge
        cout << v->pos << endl;      // print the vertex position
        h = h->next();               // move to the next halfedge around the face
      } while (h != f->halfedge());  // keep going until we're back at the beginning
    }

Notice that we refer to a face as a `FaceRef` rather than just a `Face`. You can think of a `Ref` as a kind of _pointer_. Note that members of an iterator are accessed with an arrow `->` rather than a dot `.`, just as with pointers. (A more in-depth explanation of some of these details can be found in the inline documentation.) Similarly, to print out the positions of all the neighbors of a given vertex we could write a routine like this:

    void printNeighborPositions(VertexRef v) {
      HalfEdgeRef h = v->halfedge();    // get one of the outgoing halfedges of the vertex
      do {
        HalfEdgeRef h_twin = h->twin();   // get the vertex of the current halfedge
        VertexRef vN = h_twin->vertex();  // vertex is 'source' of the half edge.
                                          // so h->vertex() is v,
                                          // whereas h_twin->vertex() is the neighbor vertex.
        cout << vN->pos << endl;          // print the vertex position
        h = h_twin->next();               // move to the next outgoing halfedge of the vertex.
      } while(h != v->halfedge());        // keep going until we're back at the beginning
    }

To iterate over **all** the vertices in a halfedge mesh, we could write a loop like this:

TheNumbat's avatar
TheNumbat committed
72
    for(VertexRef v = vertices_begin(); v != vertices_end(); v++) {
TheNumbat's avatar
TheNumbat committed
73
74
75
76
77
      printNeighborPositions(v); // do something interesting here
    }

Internally, the lists of vertices, edges, faces, and halfedges are stored as **linked lists**, which allows us to easily add or delete elements to our mesh. For instance, to add a new vertex we can write

TheNumbat's avatar
TheNumbat committed
78
    VertexRef v = new_vertex();
TheNumbat's avatar
TheNumbat committed
79
80
81

Likewise, to delete a vertex we can write

TheNumbat's avatar
TheNumbat committed
82
    erase(v);
TheNumbat's avatar
TheNumbat committed
83
84
85
86
87

Note, however, that one should be **very, very careful** when adding or deleting mesh elements. New mesh elements must be properly linked to the mesh -- for instance, this new vertex must be pointed to one of its associated halfedges by writing something like

    v->halfedge() = h;

allai5's avatar
allai5 committed
88
Likewise, if we delete a mesh element, we must be certain that no existing elements still point to it; the halfedge data structure does not take care of these relationships for you automatically. In fact, that is exactly the point of this assignment: to get some practice directly manipulating the halfedge data structure. Being able to perform these low-level manipulations will enable you to write useful and interesting mesh code far beyond the basic operations in this assignment. The `Halfedge_Mesh` class provides a helper function called `validate` that checks whether the mesh iterators are valid. You might find it worthwhile calling this function to debug your implementation (please note that `validate` only checks that your mesh is valid - passing it does not imply that your specific operation is correct).
TheNumbat's avatar
TheNumbat committed
89

TheNumbat's avatar
TheNumbat committed
90
Finally, the **boundary** of the surface (e.g., the ankles and waist of a pair of pants) requires special care in our halfedge implementation. At first glance, it would seem that the routine `printNeighborPositions()` above might break if the vertex `v` is on the boundary, because at some point we worry that we have no `twin()` element to visit. Fortunately, our implementation has been designed to avoid this kind of catastrophe. In particular, rather than having an actual hole in the mesh, we create a "virtual" boundary face whose edges are all the edges of the boundary loop. This way, we can iterate over boundary elements just like any other mesh element. If we need to check whether an element is on the boundary, we can use the following methods:
TheNumbat's avatar
TheNumbat committed
91
92
93
94
95
96

    Vertex::on_boundary()
    Edge::on_boundary()
    Face::is_boundary()
    Halfedge::is_boundary()

Hui Wang's avatar
Hui Wang committed
97
98
TODO: explicitly save a boundary vertices list??? https://stanford-cs248.github.io/Cardinal3D/meshedit/halfedge

TheNumbat's avatar
TheNumbat committed
99
These methods return true if and only if the element is associated with a boundary face. Boundary faces are stored in the usual face list, i.e., they will show up when iterating over faces. You can disambiguate faces and boundaries using the above tests.
TheNumbat's avatar
TheNumbat committed
100

TheNumbat's avatar
TheNumbat committed
101
The figure below should help to further explain the behavior of `Halfedge_Mesh` for surfaces with boundary:
TheNumbat's avatar
TheNumbat committed
102

allai5's avatar
allai5 committed
103
<center><img src="boundary_conventions.png" style="height:360px"></center>
TheNumbat's avatar
TheNumbat committed
104
105
106
107
108

Dark blue regions indicate interior faces, whereas light blue regions indicate virtual boundary faces. Note that for vertices and edges, ``on_boundary()`` will return true if the element is attached to a boundary face, but ``is_boundary()`` for halfedges is only true if the halfedge is 'inside' the boundary face. For example, in the figure above the region ``b`` is a virtual boundary face, which means that vertex ``v'``, edge ``e'``, and halfedge ``h'`` are all part of the boundary; their methods will return true. In contrast, vertex ``v``, edge ``e``, face `f`, and halfedge `h` are not part of the boundary, and their methods will return false. Notice also that the boundary face b is a polygon with 12 edges.

_Note:_ _the edge degree and face degree of a boundary vertex is not the same!_ Notice, for instance, that vertex `v'` is contained in three edges but only two interior faces. By convention, `Vertex::degree()` returns the face degree, not the edge degree. The edge degree can be computed by finding the face degree, and adding 1 if the vertex is a boundary vertex.

allai5's avatar
allai5 committed
109
Please refer to the inline comments (e.g. of `geometry/halfedge.h`) for further details about the `Halfedge_Mesh` data structure.