Following the submission of our proposal, our team has thoroughly examined the research paper, as well as its various citations, in order to evaluate what is the best approach to implementing this specific aspect of non-photorealistic rendering. After evaluating several options, we settled on using the THREEjs library, due to its robust and intuitive features. Using a WebGL system will also allow us to offer a interactive demo for users to try during the poster session. Once Ryan imported the library and tested that it worked with Github page hosting, Sirej implemented the ability to import and display 3D models via the GLTF file format. This interface was completed with a camera script that allows us to rotate, zoom, and pan around the scene. At the same time, Keiran looked into how to render the stroke-style lines onto our canvas, settling on the THREE.Meshline library, allowing lines to be rendered via meshes with custom textures. Keiran then implemented the algorithm needed to identify which edges of a mesh compose the ‘silhouette’ of the object. This is done via a series of matrix transformations that compare the normals of each pair of faces that share an edge, and checking if they face different directions relative to the camera’s perspective (i.e. if one faces towards the camera, while the other faces away). Such edges are connected via a cycle, which is then drawn by the meshline and rendered the canvas.
Results so far have been as expected, with the meshline rendering a thick silhouette outline of simple convex 3D geometries. With our current 3D rendering system, the system can conveniently occlude strokes according to their z-depths in a multi-object scene.
In hindsight, our original plan’s timeline overestimated our time needed to select and setup our environment. Per our proposal, we’ve finished roughly up to a week-and-a-half’s worth of our original plan, with a week remaining to identify edges that are creases, implement stroke creation, as well as an algorithm for stroke synthesis and assignment to edges.