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

PO1: The Bespoke Object, Refining.

Week 2:  I pretty much spent the entire week modifying the model. Mostly to make it usable for patterning, and maybe to also have it ready for animation, but I might take a different route on that. It was possible to just use the draft model, but working from experience anything that is curved on an inflatable would have a tendency to straighten. Because air volume inside the soft structure would have a tendency to push on all directions. To mitigate this, I instead opted for a flatter structure that resembles a crocodile more than a salamander. I do appreciate the whimsy of the initial draft.   Tools Used: Nomad Sculpt, Blender, Rhino, Cozy Blanket. When designing models I tend to jump between software, Its easier to design soft and organic structures using mesh based modelling or sculpting. And I happen to have a variety of choices to choose from, each with a with a specific strength but none can do it best.  Below is my workflow on Nomad Sculpt which is an I...

Interactive Circuit: LED Panner

 MADT 304 week 2: In this week we where tasked with wiring up an interactive circuit that can control multiple LEDs.  Class discussion also introduced the use of "if" statements which allow the use of Boolean logical  operators(>/</>=/<=/==/&&) in order to filter data flow or command events. Using a Potentiometer and mapping out thresholds with if  statements we can pan LEDs.  Code :                                              float potMapped; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(8, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); pinMode(12, OUTPUT); pinMode(13, OUTPUT); } void loop() { // put your main code here, to run repeatedly: potMapped = map(analogRead(A1), 0, 1023, 0, 255); if (analogRead(A1) >= 0 && analogRead(A1) = 250 && analogRead(A1) 420 && ...

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); }