Skip to content

Silveira Neto Posts

her train, 2D animation

I’m learning to use Apple Motion and Final Cut Pro. This is a little animation I’ve done to learn more about how to make 2D animations and video post-production. It’s a lot of work but it is rewarding to see it working.

Surprisingly the stars in the sky was what took me the longest. I found a lot of ways to do complex animated starfields but not an easy way to make a static simple one.

Here is a copy of the video as an alternative to YouTube.

Ruby super

class A
   def foo 
      [1, 2, 3]
   end 
end

class B < A 
   def foo 
      super.map{ |n| n * 2 } 
   end 
end

puts A.new.foo.to_s
puts B.new.foo.to_s

Output

[1, 2, 3]
[2, 4, 6]