face
What is it?
A face is a closed surface element in a polygonal mesh, most commonly a triangle (tri) or a quadrilateral (quad). Faces make up the visible geometry of a 3D model and are the surfaces to which lighting, textures and shading are applied; their normals and orientation affect rendering and backface culling. From a design perspective, faces determine topology and edge flow, which are critical for deformation during animation, subdivision behavior, and maintaining an efficient polygon budget for real-time use.
Practical example
When modeling a character you typically keep quads around joints like shoulders and knees so the mesh deforms smoothly in animation; for game-ready assets those quads are often triangulated because GPUs render triangles. If a face is oriented incorrectly (normal pointing inward), that part can be invisible due to backface culling or show lighting artifacts — a common issue when importing models into an engine. Faces are also the units you arrange in UV unwrapping and texturing, so proper face layout avoids stretching and makes painted details align correctly.
Test your knowledge
Which statement about faces in a polygonal mesh is most correct?