Paul-Andrei Burghelea
Paul Burghelea

Grasshopper Snips: Quickly Take Control of the Rhino Camera to Create Programmatic Animations

Post cover image
Blogged on Monday 9 June 20252 min read
3

Sometimes, you may want to record the visual output of your script in a more controlled manner. While a simple screen recording can be a quick and convenient solution, adopting a programmatic approach offers greater flexibility. It allows you to easily tweak settings and re-record the same output without starting from scratch, ensuring consistent results every time.

Introduction

If you're new to Grasshopper, you'll be pleased to know that with just third-party plugins, you can effortlessly set up a dynamic camera pipeline. For more experienced users, leveraging the Rhino API offers greater flexibility and enables the creation of more complex and customized implementations.

Ways to record the output

The 3 main ways to record your script output with a dynamic camera

Script video output

1. Screen recording

Instead of showing how to record using softwares such as OBS or the old PowerPoint screen recording, I will tell you why this is not a good approach, unless the exports require

The 3 main ways to record your script output with a dynamic camera

2. Grasshopper camera

Example script with Horster implementation

3. Rhinoceros API

public class Script_Instance : GH_ScriptInstance
{
  private void RunScript(Point3d camTarget, Point3d camPosition, ref object A)
  {
    RhinoDocument.Views.ActiveView.ActiveViewport.SetCameraLocations(camTarget, camPosition);
  }
}

Exporting the shots

To export the animations you can just use the default export animation pipeline. We are gonna take advantage of it with many occasions due to its convenience and ease of use. The 'Animate controls' window is part of the Grasshopper slider batteries. You need to place a slider on the canvas and 'right click' then select the 'Animate...' option. You will get the following:

Example script with Horster implementation

Now the panel offers you multiple options for optimising your exports. You can only export image frames (ie. png, jpg), not videos (i.e. mp4, avec)! After you get the image exports you will need to post process them using a video editing software such as Premier Pro or Davinci Resolve.

Comments

3
  • Mr Paul 9 days ago

    We test with a new comment. New text and comment

  • Paul 22 days ago

    Test comment 2

  • Paul 22 days ago

    Test comment

1200 characters remaining

Please note that this community is actively moderated according to the community rules. Read through the guidelines before joining the conversations.