Smooth Normal Generation with Preservation of Edges

Published February 17, 2002 by Nate Robins, posted by Myopic Rhino
Do you see issues with this article? Let us know.
Advertisement
[size="5"]Overview

Normals are an important piece of geometry for rendering smooth surfaces. Generation of proper normals is very straightforward for continuous surfaces. To calculate a smooth normal for a vertex, average the facet normals of all the polygons that the vertex is in. However, this does not work when there are edges that are to be preserved in the model. This method will smooth out all edges. Therefore, it is desirable to selectively average normals according to a threshold for edge preservation.

A good example is a model of a cube. It is desirable for the cube to have flat faces. However, if all the facet normals around a vertex are averaged, and the resulting average normal is used, the cube takes on a spherical look ([alink='fig1']see figure 1[/alink]), which is probably not the desired effect.

Another gotcha when creating smooth normals is duplicate vertices. These can be eliminated by 'welding' vertices that are closer than a tolerance to each other. Then the normals are recalculated. See [alink='fig2']figure 2[/alink] for an example of this.

Different models require different edge tolerance angles. Sometimes the angle across some edges is the same as the angle between some geometry that should be smooth. This is a problem with my current algorithm. It could be dealt with by localizing the averaging according to user defined areas. See [alink='fig3']figure 3[/alink] for an example of problems of this kind (the base of the pawn is faceted, when it shouldn't be, but the tolerance must be 76? for the edge in the middle to appear).


[size="5"]Implementation

/* glmVertexNormals: Generates smooth vertex normals for a model.
* First builds a list of all the triangles each vertex is in. Then
* loops through each vertex in the the list averaging all the facet
* normals of the triangles each vertex is in. Finally, sets the
* normal index in the triangle for the vertex to the generated smooth
* normal. If the dot product of a facet normal and the facet normal
* associated with the first triangle in the list of triangles the
* current vertex is in is greater than the cosine of the angle
* parameter to the function, that facet normal is not added into the
* average normal calculation and the corresponding vertex is given
* the facet normal. This tends to preserve hard edges. The angle to
* use depends on the model, but 90 degrees is usually a good start.
*
* model - initialized GLMmodel structure
* angle - maximum angle (in degrees) to smooth across
*/
See attached resource file with source code + tons of models + x86 executable (2,723,239 bytes).

[aname='fig1']cubesmooth.jpgcubeflat.jpgSmooth normals for a cube generated with a 91? edge tolerance (smooth across the edges). Eight normals generated (one per vertex).Smooth normals for a cube generated with an 89? edge tolerance (not smooth across the edges). Thirty-two normals generated.Figure 1
[aname='fig2']teapotflat.jpgteapotsmooth.jpgFlat shaded teapot (one normal per face).Smooth normals generated (with a 90? edge tolerance). The lines are where the bezier patches overlap. There are duplicate vertices along the lines.teapotweld.jpgteapotwire.jpgOptimized teapot model (duplicate vertices removed).Wireframe teapot to illustrate structure. Figure 2
[aname='fig3']pawnflat.jpgpawnsmooth.jpgFlat shaded pawn.Smooth normals generated (with a 90? edge tolerance). Notice the sharp edges in the model. pawntoler.jpgThe third pawn image with the good specular highlight has normals that were created with an edge tolerance of 76?. These edge tolerance angles are very model specific.Smooth shaded pawn. Figure 3
headflat.jpgheadsmooth.jpgFlat shaded head.Smooth normals generated (with a 90? edge tolerance). Notice the sharp edges (especially around the eyes) in the model.Figure 4
Cancel Save
0 Likes -1 Comments

Comments

Gaiiden
Table code:



[aname='fig1']<table border="0" cellpadding="6" width="480"><tbody><tr><td>[attachment=3980:cubesmooth.jpg]</td><td>[attachment=3981:cubeflat.jpg]</td></tr><tr><td>Smooth normals for a cube generated with a 91° edge tolerance (smooth across the edges). Eight normals generated (one per vertex).</td><td>Smooth normals for a cube generated with an 89° edge tolerance (not smooth across the edges). Thirty-two normals generated.</td></tr><tr><td colspan="2" class="maintext-2" align="center"><b>Figure 1</b></td></tr></tbody></table>
[aname='fig2']<table border="0" cellpadding="6" width="480"><tbody><tr><td>[attachment=3982:teapotflat.jpg]</td><td>[attachment=3983:teapotsmooth.jpg]</td></tr><tr valign="top"><td>Flat shaded teapot (one normal per face).</td><td>Smooth normals generated (with a 90° edge tolerance). The lines are where the bezier patches overlap. There are duplicate vertices along the lines.</td></tr><tr><td>[attachment=3984:teapotweld.jpg]</td><td>[attachment=3985:teapotwire.jpg]</td></tr><tr valign="top"><td>Optimized teapot model (duplicate vertices removed).</td><td>Wireframe teapot to illustrate structure. </td></tr><tr><td colspan="2" class="maintext-2" align="center"><b>Figure 2</b></td></tr></tbody></table>
[aname='fig3']<table border="0" cellpadding="6" width="480"><tbody><tr><td>[attachment=3986:pawnflat.jpg]</td><td>[attachment=3987:pawnsmooth.jpg]</td></tr><tr valign="top"><td>Flat shaded pawn.</td><td>Smooth normals generated (with a 90° edge tolerance). Notice the sharp edges in the model. </td></tr><tr><td>[attachment=3988:pawntoler.jpg]</td><td>The third pawn image with the good specular highlight has normals that were created with an edge tolerance of 76°. These edge tolerance angles are very model specific.</td></tr><tr valign="top"><td>Smooth shaded pawn.</td><td>&nbsp;</td></tr><tr><td colspan="2" class="maintext-2" align="center"><b>Figure 3</b></td></tr></tbody></table>
<table border="0" cellpadding="6" width="480"><tbody><tr><td>[attachment=3989:headflat.jpg]</td><td>[attachment=3990:headsmooth.jpg]</td></tr><tr valign="top"><td>Flat shaded head.</td><td>Smooth normals generated (with a 90° edge tolerance). Notice the sharp edges (especially around the eyes) in the model.</td></tr><tr><td colspan="2" class="maintext-2" align="center"><b>Figure 4</b></td></tr></tbody></table>
June 30, 2011 05:36 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement