2011

Table Of Contents
direction in which a face is pointing is defined by a vector called a normal.
The direction of the normal indicates the front, or outer surface of the face.
When normals are unified and point in the same outward direction, the
renderer processes each face and renders the model. If any normals are flipped,
facing inward, the renderer skips them and leaves triangular or quadrilateral
holes in the rendered image.
If a face is missing, youll need to manually reconstruct it. The direction of
normals is determined by the way a face is drawn in a right-handed coordinate
system: if you draw the face counter-clockwise, the normals point outward;
if you draw the face clockwise, the normals point inward. You should draw
faces consistently.
NOTE Solid objects have meshes and normals correctly oriented, which can be
an aid to creating models for rendering.
After the back faces have been removed, the renderer uses a Z buffer to compare
relative distances along the Z axis. If the Z buffer indicates that one face
overlaps another, the renderer removes the face that would be hidden.
Understand Face Normals and Hidden Surfaces | 995