3D Modeling Lighting & Rendering 2 — Questions and Answers
Question 1: What is subsurface scattering (SSS) and for which material type is it most commonly used?
- A noise-reduction algorithm applied during rendering; most used for metallic surfaces
- A technique that simulates light penetrating and scattering beneath a surface; most used for skin, wax, and marble (Correct answer)
- A method for scattering UV islands across a texture atlas; most used for hard-surface models
- A particle system effect for simulating dust or fog; most used for environmental scenes
Correct answer: A technique that simulates light penetrating and scattering beneath a surface; most used for skin, wax, and marble
Subsurface scattering simulates how light enters semi-translucent materials, scatters internally, and exits at a different point, which is essential for realistic skin, wax, and jade renderings.
Question 2: What does 'depth of field' simulate in a 3D render?
- The distance at which objects begin to clip and disappear from the camera view
- The optical camera effect where objects outside the focal plane appear blurred (Correct answer)
- The range of shadow sharpness based on light source distance
- The Z-depth gradient used to calculate fog density in a scene
Correct answer: The optical camera effect where objects outside the focal plane appear blurred
Depth of field mimics the optical behavior of real camera lenses by blurring objects outside the focused distance, adding a cinematic or photographic quality to renders.
Question 3: In PBR rendering, what distinguishes a metallic material from a non-metallic (dielectric) material in terms of reflectivity?
- Metals reflect only green light wavelengths while dielectrics reflect all wavelengths equally
- Metals have no diffuse component and their reflections are tinted by the albedo color; dielectrics have both diffuse and specular components with white reflections (Correct answer)
- Metals require subsurface scattering to render correctly; dielectrics do not
- Metals use a roughness value of exactly 0.5; dielectrics can have any roughness value
Correct answer: Metals have no diffuse component and their reflections are tinted by the albedo color; dielectrics have both diffuse and specular components with white reflections
In PBR, metals have zero diffuse reflection and their specular highlights take on the metal's base color, while dielectrics retain a white-ish specular highlight alongside their diffuse component.
Question 4: What is a light probe (or irradiance probe) used for in real-time 3D rendering?
- A diagnostic tool for measuring the luminance output of a virtual light source
- A data structure that captures and stores lighting information at a point in space to simulate global illumination in real time (Correct answer)
- A post-process filter that adjusts the color temperature of all lights in a scene
- A device used on set to measure real-world lighting for visual effects matching
Correct answer: A data structure that captures and stores lighting information at a point in space to simulate global illumination in real time
Light probes capture ambient light information from their position in the scene and are used by nearby dynamic objects to receive approximate global illumination without full ray tracing.
Question 5: What causes 'fireflies' (bright speckling noise) in path-traced renders, and what is the most common solution?
- They are caused by too many render samples; solved by reducing the sample count
- They are caused by very bright indirect light bounces with too few samples; solved by increasing sample count or using a firefly clamp/denoiser (Correct answer)
- They appear when specular roughness exceeds 0.9; solved by lowering roughness values
- They result from overlapping UV islands; solved by re-unwrapping the mesh
Correct answer: They are caused by very bright indirect light bounces with too few samples; solved by increasing sample count or using a firefly clamp/denoiser
Fireflies occur when a ray randomly hits an extremely bright light path with insufficient samples to average it out; increasing samples or using a clamp value reduces their intensity.
Question 6: What is volumetric lighting in 3D rendering?
- A technique that renders light as three-dimensional objects rather than infinite rays
- A rendering effect that simulates light scattering through participating media such as fog, smoke, or dust to make light beams visible (Correct answer)
- A method that bakes lighting into a 3D texture (voxel grid) for real-time use
- A compositing technique that multiplies light passes to correct exposure
Correct answer: A rendering effect that simulates light scattering through participating media such as fog, smoke, or dust to make light beams visible
Volumetric lighting simulates how light interacts with particles in the air or other media, producing visible god rays, fog, smoke, and atmospheric depth in a scene.
Question 7: What is the difference between a hard shadow and a soft shadow in 3D rendering?
- Hard shadows are computed by ray tracing; soft shadows are computed by rasterization
- Hard shadows have a sharp, defined edge produced by a point light source; soft shadows have gradual penumbra edges produced by area or large light sources (Correct answer)
- Hard shadows only appear on opaque surfaces; soft shadows also appear on transparent surfaces
- Hard shadows are baked into the texture; soft shadows are calculated in real time
Correct answer: Hard shadows have a sharp, defined edge produced by a point light source; soft shadows have gradual penumbra edges produced by area or large light sources
Hard shadows result from an infinitesimally small light source casting a sharp boundary, while soft shadows result from an area light where parts of the source are occluded gradually, creating a penumbra.
What is subsurface scattering (SSS) and for which material type is it most commonly used?