top of page
TRUE · 真

TRUE · 真

Project Type: Individual Project
Time: March, 2021

A generative structure of the Chinese character "真" with lights and shadows in three.js.

6C0393E1-D45B-4A61-90C6-404282958E5A.JPEG

For this assignment, I was asked to create generative structure with lights and shadows in three.js. Through research online, I found this project above, which uses the shadow of the hanging objects to form a Chinese character “敢” (gan3, also means “dare” in English). There is also a game that I used to play called Shadowmatic, which consists of manipulating the objects and their shadows. So I used them as my inspirations and planned to generate several pieces and form them into a Chinese character as well.

For the objects, I used PlaneGeometry() to create a function “getPiece()” in order to generate pieces of the character in random sizes. I formed a Chinese character “真” (zhēn), also means “true” in English. However, as I didn’t find a better way to determine the coordination of each piece, I just used several “for” loops in setupTHREE() for the coordinations. For the pieces’ movement, I created a rotation movement for it and used noise() to constantly change the y position of all the pieces.

There are two light sources in this structure: one is a SpotLight defined in a class, another one is a Hemisphere Light. I manipulated the movement of the SpotLight with sin() and cos() in the animate() function so that the light source can bounce around to create more dynamic visualization. In the GUI controller, I also added an online reference to control the color of the SpotLight in real time.

The final outcome looks like this:

bottom of page