3D Modeling Lighting & Rendering 1 — Questions and Answers
Question 1: What is global illumination in 3D rendering?
- A technique that simulates only direct lighting from light sources
- A rendering method that simulates how light bounces and interacts between surfaces (Correct answer)
- A type of ambient light applied uniformly to a scene
- A post-processing filter that brightens dark areas of a render
Correct answer: A rendering method that simulates how light bounces and interacts between surfaces
Global illumination simulates indirect lighting by calculating how light bounces off surfaces and illuminates other objects, producing realistic light interactions.
Question 2: What is the primary difference between a point light and a directional light in 3D software?
- A point light casts no shadows while a directional light always does
- A point light emits light in all directions from a single position; a directional light emits parallel rays from an infinite distance (Correct answer)
- A point light can only illuminate flat surfaces; a directional light works on curved surfaces
- A point light uses ray tracing; a directional light uses rasterization
Correct answer: A point light emits light in all directions from a single position; a directional light emits parallel rays from an infinite distance
A point light simulates a local source like a bulb emitting light outward in all directions, while a directional light simulates a distant source like the sun with parallel light rays.
Question 3: What does HDRI stand for and how is it used in 3D rendering?
- High Dynamic Range Imaging; used as a 360° environment map to provide realistic lighting and reflections (Correct answer)
- Horizontal Depth Ray Integration; used to calculate shadow distances in a scene
- High Definition Rendering Interface; a software API for GPU-accelerated rendering
- Hue Density Range Index; a color calibration tool for render output
Correct answer: High Dynamic Range Imaging; used as a 360° environment map to provide realistic lighting and reflections
HDRI (High Dynamic Range Imaging) captures real-world light information in all directions and is used as a spherical environment map to light 3D scenes realistically.
Question 4: What is ray tracing in the context of 3D rendering?
- A polygon simplification algorithm that reduces mesh complexity
- A UV projection method for mapping textures onto curved surfaces
- A rendering algorithm that simulates the physical path of light rays to produce realistic reflections, shadows, and refractions (Correct answer)
- A keyframe interpolation method for smooth animation curves
Correct answer: A rendering algorithm that simulates the physical path of light rays to produce realistic reflections, shadows, and refractions
Ray tracing traces the path of light rays from the camera back to light sources, accurately simulating reflections, refractions, and shadows for photorealistic results.
Question 5: What is ambient occlusion (AO) in 3D rendering?
- A technique that adds bloom and glow effects around bright light sources
- A shading technique that approximates how exposed a surface point is to ambient lighting, darkening crevices and contact areas (Correct answer)
- A method to simulate transparent and translucent materials
- A post-process effect that simulates lens chromatic aberration
Correct answer: A shading technique that approximates how exposed a surface point is to ambient lighting, darkening crevices and contact areas
Ambient occlusion darkens areas where surfaces are close together or enclosed, simulating the reduced ambient light that reaches those areas for added depth and realism.
Question 6: What is the primary purpose of render passes (also called render layers or AOVs)?
- To split a high-polygon scene into multiple lower-resolution renders for speed
- To separate a render into individual components such as diffuse, specular, shadows, and depth for compositing control (Correct answer)
- To bake all lighting information into the mesh's vertex colors
- To render the same scene multiple times with different camera angles simultaneously
Correct answer: To separate a render into individual components such as diffuse, specular, shadows, and depth for compositing control
Render passes separate different lighting and shading components into individual image layers, giving compositors fine-grained control to adjust each element independently without re-rendering.
Question 7: In physically based rendering (PBR), what does the 'roughness' value of a material control?
- The overall brightness or albedo of the surface color
- The degree to which specular highlights are sharp and focused versus blurry and spread out (Correct answer)
- The thickness of the geometry's displaced surface detail
- The transparency level of the material at grazing angles
Correct answer: The degree to which specular highlights are sharp and focused versus blurry and spread out
In PBR, roughness controls how microscopically uneven a surface is: a value of 0 produces a mirror-like sharp reflection, while a value of 1 produces a fully diffuse, matte appearance.
What is global illumination in 3D rendering?