3D Modeling 3D Modeling 5 — Questions and Answers
Question 1: What is 'photogrammetry' in the context of 3D modeling?
- A rendering algorithm for realistic lighting
- A technique that uses photographs from multiple angles to reconstruct a 3D model (Correct answer)
- A method for painting textures directly onto a 3D surface
- A procedural approach to generating terrain
Correct answer: A technique that uses photographs from multiple angles to reconstruct a 3D model
Photogrammetry uses overlapping photos of a real object or environment to compute a detailed 3D mesh and texture through software algorithms.
Question 2: Which type of 3D projection is commonly used in game engines because it preserves parallel lines and has no perspective distortion?
- Perspective projection
- Orthographic projection (Correct answer)
- Fisheye projection
- Spherical projection
Correct answer: Orthographic projection
Orthographic projection displays objects at true scale regardless of depth, making it useful for isometric games and technical modeling views.
Question 3: In 3D modeling, what is a 'manifold mesh'?
- A mesh with at least one million polygons
- A watertight mesh where every edge is shared by exactly two faces with no holes or non-manifold geometry (Correct answer)
- A mesh that has been unwrapped using spherical UV projection
- A mesh stored in multiple separate files
Correct answer: A watertight mesh where every edge is shared by exactly two faces with no holes or non-manifold geometry
A manifold (watertight) mesh has no open edges, holes, or geometry errors, which is required for 3D printing and many simulation workflows.
Question 4: What does 'instancing' mean in a 3D scene?
- Creating a unique copy of a mesh with its own independent geometry data
- Placing multiple references to a single mesh in the scene without duplicating its geometry data (Correct answer)
- Splitting a mesh into separate objects at its seams
- Applying the same texture to multiple objects simultaneously
Correct answer: Placing multiple references to a single mesh in the scene without duplicating its geometry data
Instancing references one mesh multiple times in memory, dramatically reducing RAM usage and improving performance for repeated objects like trees or rocks.
Question 5: What is 'UV seam placement' best practice when texturing a character's head?
- Place seams along the most visible front-facing areas for easy editing
- Place seams along hairlines, ears, and the back of the head where they will be least visible (Correct answer)
- Place seams only along the nose bridge for symmetry
- UV seams are automatically placed by all software and cannot be adjusted
Correct answer: Place seams along hairlines, ears, and the back of the head where they will be least visible
Seams placed in hidden or less-visible areas minimize visible texture distortion or seam lines in the final rendered result.
Question 6: In sculpting software like ZBrush, what is a 'DynaMesh' used for?
- Dynamically importing external mesh files at runtime
- Remeshing the entire sculpt at a uniform polygon density to allow unrestricted sculpting without topology constraints (Correct answer)
- Automatically rigging a character after sculpting
- Applying procedural noise patterns to a surface
Correct answer: Remeshing the entire sculpt at a uniform polygon density to allow unrestricted sculpting without topology constraints
DynaMesh redistributes polygons evenly across the entire sculpt at any moment, preventing polygon stretching when adding major new forms.
Question 7: What is the purpose of a 'render pass' in 3D production?
- Splitting rendering across multiple GPUs for speed
- Separating different visual elements (shadows, reflections, diffuse) into individual image layers for compositing (Correct answer)
- Reducing texture resolution before final output
- Applying motion blur only to selected objects
Correct answer: Separating different visual elements (shadows, reflections, diffuse) into individual image layers for compositing
Render passes output individual lighting and shading components as separate image files, giving compositors fine-grained control in post-production.
What is 'photogrammetry' in the context of 3D modeling?