Skip to main content

OBDF 310: Animation

 



This week we had the chance to use animation functions in Grasshopper, it can be accessed by utilizing the slider nodes and mapping the values for frames you wish to record. I think its a very unique method you can access to add some motion control models. 


To animate the balls in the structure I first subdivided curves in areas I wanted it to pivot and using the lists of points created by the divide node I was able to select where the ball cans track too. Similar to making objects track into a specific path. 


I wanted to design a scene inspired by M.C. Eschers surrealist drawings of endless balconies and mazes. I was hoping I could animate each ball independently with remaped values to control speed and have variance. But for some reason whenever I select multiple curves to subdivide and install the balls, it produces another copy that I wasn't able to fix/trouble shoot. The program feels like a huge grind to learn but Im happy to put some effort or at least attempt to learn it to the best of my ability.







Comments

Popular posts from this blog

P02: The Wishmaker

  Project 02: The Wishmaker Wishmaker (2025) is an experimental video performance where I explore the intersection of personal aspiration and ecological contemplation. Central to the piece is footage of myself attempting to inflate a windsock fashioned as a whale shark adorned with stars, symbolizing the cosmos. Accompanying this imagery are audio recordings from 38 individuals responding to the prompt, "What do you wish for the most?" The participants were encouraged to imagine if there existed an entity capable of granting wishes, what they would ask for. The non-hierarchical arrangement of these recordings allows the piece to unfold organically, avoiding a prescriptive narrative. The choice of the whale shark motif reflects my fascination with its beauty and its profound ecological significance. By projecting participants' wishes into the sky through this iconic form, I aim to evoke a sense of interconnectedness with nature and the universe. While "Wishmaker...

REPLICATED/REMEDIATED: MOLD POSITIVES & MATCH PLATE

                   Last Supper 2023                  Medium: Optimistic Students, Instructor, Acrylic, Plaster, Tape                  Site-Specific Performance     We reached the end to this project and were building plaster mould's and finally some traumatic experiences with slip casting and lots of waiting. Good soup <3 We agitate plaster in water to facilitate an exothermic reaction that would lead into it solidifying. Its a great experience like making chowder or adding starch into boiling water except the water is freezing. Finishing this plaster mould.  Before slip casting ensure that the mould plates are fully dry, once that is complete start pouring up to the rim and wait for the clay to precipitate.  On the first try the clay did form around the plaster, mine but did not really dry but the first once is always di...

BLINK: Arduino

  Intro assignment for MADT 304   We make a LED blink, using a simple program directly from the Arduino.  Wiring Hookup: Output from PIN9 and 5v power and ground directly from the controller.  Code                                                int led = 9; void setup() { pinMode(led,OUTPUT); } void loop() { digitalWrite(led,HIGH); delay(500); digitalWrite(led,LOW); delay(500); }