Mesh Basics
Mesh Basics
Spring 2010
Definitions: 1/2
A polygonal mesh consists of three kinds of mesh elements: vertices, edges, and faces. The information describing the mesh elements are mesh connectivity and mesh geometry. y g y The mesh connectivity, or topology, describes the incidence relations among mesh elements (e.g., adjacent vertices and edges of a face, etc). The mesh geometry specifies the position and other geometric characteristics of each vertex.
2
Definitions: 2/2
closed fan
A mesh is a manifold if (1) each edge is incident to only one or two faces and (2) the faces incident to a vertex form a closed or an open fan. The orientation of a face is a cyclic open fan order of the incident vertices. The orientation of two adjacent faces is compatible, if the two vertices of the common edge are in opposite order. A manifold mesh is orientable if any y two adjacent faces have compatible orientation.
3
open fan
boundary
non-manifold boundary
http://www.jcu.edu/math/vignettes/Mobius.htm
10
11
12
14
Homeomorphisms: 1/3
Two 2-manifold meshes A and B are homeomorphic if their surfaces can be transformed to the other by twisting, squeezing, and stretching without cutting and gluing. Thus, boxes, spheres and ellipsoids are homeomorphic to each other.
is homeomorphic to
15
Homeomorphisms: 2/3
Two orientable 2-manifold meshes without boundary are homeomorphic if and only if they have the same Euler-Poincar characteristic. g Thus, a m-handle (i.e., genus m) orientable mesh is homeomorphic to a n-handle (i.e., genus n) orientable mesh if and only if m = n. Two orientable 2-manifold meshes with the same number of boundary polygons are homeomorphic if and only if they have the same Euler-Poincar characteristic. u e o ca c a acte st c.
16
Homeomorphisms: 3/3
Hence, any orientable 2-manifold mesh without boundary is homeomorphic to a sphere with m handles (i.e., genus m), where m 0.
17
Applications: 1/3
A mesh is regular if all faces have the same number edges, and all vertices are incident to the same number of edges (i.e., valence). g q Each face of a regular quad mesh is a quadrilateral (i.e., four-sided) and each vertex is incident to four edges (i.e., valence = 4).
18
Applications: 2/3
Only a torus can be a regular quad mesh! g g Since each vertex has 4 edges and each edge is counted twice, we have 4V = 2E (i.e., V=E/2). Since each face has 4 edges and each edge is counted twice, we have 4F = 2E (i.e., F = E/2). Thus, Thus (M) = V-E+F = 0 means a torus!
19
Applications: 3/3
Only tori can be regular triangle mesh of valence 6! g Since each vertex has 6 edges and each is counted twice, we have 6V = 2E (i.e., V=E/3). Since each face has 3 edges and each edge is counted twice, we have 3F = 2E (i.e., F = 2E/3). Thus, Thus (M) = V-E+F = 0 means a torus!
20
1 c
23
1 c
24
1 c
2 e
1 c
2 e
27
1 c X
2 e
28
1 c
2 e
30
1 c
2 e
31
a A b B 1 f c 2
e C d
B C D
a A
L. Pred e c a e c d L. Succ f a b c d b R. Pred b f d b f a R. Succ c d e f a e
e 1 f b B c 2 C d
Edge Table
Edge Start Vtx a b c d e f A A B B C A End Vtx D B D C D C L. Face 3 1 1 2 2 4 R. Face 1 4 2 4 3 3
33
X
find fi d next t find next
35
current
current
37
39
counter clock-wise
40
41
Discussions
Both examples list elements in counter clockwise order. It is easy to change to clock-wise. The second example obviously requires more p processing than a conventional data structure g does; however, the first one is much faster. Based on what you know, do this inquiry:
Given a vertex X find X, all outer edges of X (i.e., the link) in counter clock-wise order clock wise order.
43
Exercise
The half-edge data structure is an extension to the winged-edge data structure, and is more popular and widely used today. p g It splits each edge into two, each of which is referred to as an half-edge. Search the web to learn more about this data structure. An open source software OpenMesh software, OpenMesh, developed by Prof. Leif Kobbelt, is available here: www openmesh org www.openmesh.org
44
The End
45