**Chloe Son Hanlin Wang Final Project Report**
(#) Chloe Son (F00361v) & Hanlin Wang (F003615))
This scene from Hugo captures the cinematic, steampunk quality we want to convey with our scene environment.
Under the theme of *"It's what's inside that counts"*, our team has designed a concept within a grand clock tower, where a mustached robot ardently operates the giant hands of the clock. In doing so, he counts the passage of time.
To bring this scene to life, we augmented our renderer to showcase sunlight pouring into the tower through the glass clock face as well as brushed metal materials to fortify our steampunk aesthetic.
*Below is our concept sketch, utilized as reference for our self-made 3D models and feature design:*
(#) New Features of Our Renderer
(##) Directional Light Source *(4)*
*Description:*
* We desired to create a scene that was wholly dependent on directional light rather than background light for a dramatic lighting effect. We did so by creating an enclosed space (the clock tower interior) for our scene, cutting out a window into the outside where the background was set as 0, and placed a diffuse light outside the window to cast light through the window and into the room so as to cast sun beams and shadows into the clock tower.
*Validation Tests:*
* **NormalsIntegrator Test:** To test the directional light source, we first rendered out our scene and the light using the NormalsIntegrator, which allowed us to very clearly see how the light was shading the surfaces.
* **Custom Scene for Visual Testing:** Another test we conducted was modeling a custom scene that had gaps in the ceiling to observe how our Integrator allowed light to shine into the room from outside.
*Encountered Problems:*
* We struggled with rendering the wall onto which our clock face was attached. When the wall was present in the scene, it would not render correctly and behave as if it were not there, but the light would also be occluded by it, as well. We solved this issue by bringing the wall into Autodesk Maya and realizing that our renderer could not interpret the geometry due to the non-manifold nature of the mesh because we had cut out a hole in the wall so light could go through that part of the wall and the clock face. We fixed the issue by using the "Quad draw" tool in Maya to re-topologize the wall to consist of quad polygons.
(##) Anisotropic Microfacet BRDF *(4)*
*Description:*
* We implemented a rough metal material based on a microfacet BRDF. To statistically stimulate the apperance of reflective surfaces
with microscopic ridges and facets, we defined a Beckmann distribution function which gives the differential area of microfacets w.r.t the surface normal w_h
(the halfway vector between incident and reflected rays). The distribution supports anisotropy by varying the roughness_x and roughness_y, which becomes isotropic when the two terms are equal.
*Validation Tests:*