3D Modeling Quality Control & Assurance 2 — Questions and Answers
Question 1: What does 'watertight' mean in the context of 3D mesh quality?
- All edges are smooth and beveled
- The mesh has no holes, open edges, or non-manifold geometry (Correct answer)
- The model uses only quad polygons
- All normals face outward
Correct answer: The mesh has no holes, open edges, or non-manifold geometry
A watertight mesh is fully closed with no gaps, making it suitable for 3D printing and simulation.
Question 2: Which tool in most 3D software helps identify faces with zero area or zero-length edges?
- UV Unwrap
- Mesh Cleanup / Clean Up Geometry (Correct answer)
- Boolean Modifier
- Subdivision Surface
Correct answer: Mesh Cleanup / Clean Up Geometry
Mesh cleanup tools automatically detect and remove degenerate geometry like zero-area faces and zero-length edges.
Question 3: What is the purpose of checking 'face normals' during QA of a 3D model?
- To verify polygon count is within budget
- To ensure all faces point in the correct direction for proper shading and rendering (Correct answer)
- To check UV seam placement
- To validate texture resolution
Correct answer: To ensure all faces point in the correct direction for proper shading and rendering
Flipped normals cause surfaces to appear invisible or incorrectly shaded in renders and game engines.
Question 4: A client reports that a character model looks fine in the viewport but has dark artifacts in renders. What is the most likely cause?
- Too many polygons
- Smoothing group or normal map conflicts (Correct answer)
- Missing UV coordinates
- Incorrect file format
Correct answer: Smoothing group or normal map conflicts
Smoothing group errors or baked normal map misalignment commonly produce dark render artifacts not visible in real-time viewports.
Question 5: What does 'scale not applied' on an object typically cause in a game engine?
- Incorrect vertex colors
- Physics, lighting, and collision calculations behaving unexpectedly (Correct answer)
- Texture stretching only
- Higher draw calls
Correct answer: Physics, lighting, and collision calculations behaving unexpectedly
Non-applied transforms confuse engine calculations that rely on world-space dimensions being baked into the mesh.
Question 6: Which polygon count metric is most relevant when evaluating a model for a mobile game?
- Total vertex count including duplicates
- Triangle count as rendered by the GPU (Correct answer)
- Quad count in the base mesh
- N-gon count
Correct answer: Triangle count as rendered by the GPU
GPUs render triangles, and mobile hardware has strict triangle budgets, making tri count the critical metric.
Question 7: What is a 'T-junction' artifact in mesh QA, and why is it problematic?
- A UV seam that forms a T shape
- A vertex on an edge that is not shared by adjacent polygons, causing rendering cracks (Correct answer)
- A texture tile boundary
- An overlapping edge loop
Correct answer: A vertex on an edge that is not shared by adjacent polygons, causing rendering cracks
T-junctions leave gaps between polygons because the vertex is not connected to the neighboring face, causing visible cracks at render time.
What does 'watertight' mean in the context of 3D mesh quality?