Grasshopper

algorithmic modeling for Rhino

Learn how to create an animation with the Squid plugin.

http://www.grasshopper3d.com/group/squid/page/animate-the-squid

Views: 205

Albums: Squid

Comment

You need to be a member of Grasshopper to add comments!

Comment by Mateusz Zwierzycki on January 28, 2015 at 9:18pm
Thanks Daniel, I think I might implement it in the next release.

That's a really nice lib btw :

Animated Gif Encoding

using (var image = Image.FromFile(""))
using (var gif = File.OpenWrite(""))
using (var encoder = new GifEncoder(gif))
for (var i = 0; i < 360; i += 10)
using (var frame = image.Rotate(i, false))
{
encoder.AddFrame(frame);
}
Comment by Daniel Piker on January 27, 2015 at 2:13pm

It would be nice if you added the option to generate the animations directly, without needing to switch to an external application.

Here's an open .NET library that includes animated gif encoding: https://github.com/DataDink/Bumpkit

About

Translate

Search

Photos

  • Add Photos
  • View All

Videos

  • Add Videos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service