POV-Ray : Newsgroups : povray.general : Latest animation -- "Larry's Last Ride" Server Time
30 Jul 2024 14:20:01 EDT (-0400)
  Latest animation -- "Larry's Last Ride" (Message 1 to 9 of 9)  
From: Dan Byers
Subject: Latest animation -- "Larry's Last Ride"
Date: 4 Feb 2009 12:25:00
Message: <web.4989cebde0170406a8d0b25a0@news.povray.org>
http://goofygraffix.com/now-showing/larrys-last-ride/

Yes, technically it's a hand-drawn animation, but I use POV-Ray exclusively to
put all the drawn PNG layers together, sequence them, scale them, rotate them,
etc.  I also use it as a master editor to put the finished frames together, and
to tell Csound when to generate audio samples.  The background starfield is the
only non-hand-drawn component -- a bunch of POV cylinders zooming past the
camera :)

I'm going to take a break for a month, then get started on an actual
computer-generated-with-POV film.

Comments welcome!

--
Dan
GoofyGraffix.com


Post a reply to this message

From: Warp
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 4 Feb 2009 12:38:13
Message: <4989d285@news.povray.org>
Dan Byers <goofygraffix_at_geemail_dot_com> wrote:
> http://goofygraffix.com/now-showing/larrys-last-ride/

  For some reason the characters reminded me of something out of Spore.

  Great game (Spore, that is), and funny animation (yours, that is).

-- 
                                                          - Warp


Post a reply to this message

From: Dan Byers
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 4 Feb 2009 14:25:00
Message: <web.4989eb4da0d736a7a8d0b25a0@news.povray.org>
Warp <war### [at] tagpovrayorg> wrote:
>
>   For some reason the characters reminded me of something out of Spore.
>
>   Great game (Spore, that is), and funny animation (yours, that is).
>

Thanks :) Never heard of Spore, which is not surprising seeing as I've never
really been a gamer, although the Wii is trying its best to change that :|

--
Dan
GoofyGraffix.com


Post a reply to this message

From: Kenneth
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 5 Feb 2009 02:50:00
Message: <web.498a9965a0d736a7f50167bc0@news.povray.org>
Funny! An out-of-the-ordinary use of POV-Ray, which is always nice to see. I
took a look at your other animations; VERY creative. I'm somewhat new to POV
animation, trying to figure out 'sequencing' of events, etc. You've tackled
that and mastered it. Bravo!

Ken W.


Post a reply to this message

From: Carlo C 
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 5 Feb 2009 05:30:00
Message: <web.498abf1ba0d736a7eaeb67c40@news.povray.org>
"Dan Byers" <goofygraffix_at_geemail_dot_com> wrote:
> http://goofygraffix.com/now-showing/larrys-last-ride/
>
> Yes, technically it's a hand-drawn animation, but I use POV-Ray exclusively to
> put all the drawn PNG layers together, sequence them, scale them, rotate them,
> etc.  I also use it as a master editor to put the finished frames together, and
> to tell Csound when to generate audio samples.  The background starfield is the
> only non-hand-drawn component -- a bunch of POV cylinders zooming past the
> camera :)
>
> I'm going to take a break for a month, then get started on an actual
> computer-generated-with-POV film.
>
> Comments welcome!
>
> --
> Dan
> GoofyGraffix.com

GNAM GNAM
I have some appetite!

great site, great animation!

--
Carlo


Post a reply to this message

From: Dan Byers
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 5 Feb 2009 10:30:02
Message: <web.498b0571a0d736a7a8d0b25a0@news.povray.org>
"Kenneth" <kdw### [at] earthlinknet> wrote:
> Funny! An out-of-the-ordinary use of POV-Ray, which is always nice to see. I
> took a look at your other animations; VERY creative. I'm somewhat new to POV
> animation, trying to figure out 'sequencing' of events, etc. You've tackled
> that and mastered it. Bravo!
>
> Ken W.

Thanks for the compliment :)  Yeah, you wouldn't normally think of using POV to
make 2-D, traditional 'cel' animations, but it's such a versatile program that
it can do it fairly easily.  All I'm doing is creating polygons for each 'cel'
layer, and a #switch( frame_number ) block to assign an appropriate image_map
as a texture for each polygon:

#local aspect_ratio = 4/3; // or 16/9 if shooting for widescreen

// Layer 1
#switch( frame_number )
  #case( 1 )      #local f_name = "alien1.png"; #break
  #range( 2, 5 )  #local f_name = "alien2.png"; #break // looking at camera
  ...
#end

polygon {
  5,
  <1,1,0>,
  <-1,1,0>,
  <-1,-1,0>,
  <1,-1,0>,
  <1,1,0>

  pigment {
    image_map {
      png f_name once interpolate 2
    }
  }
  finish {
    ambient 1 diffuse 0
  }

  translate <-.5,-.5,0>  // center the image

  // you can scale, rotate, or translate the layer as your heart
  // sees fit -- for zooming cameras, moving backgrounds, etc.
  scale <1 * aspect_ratio, 1, 1>
  rotate <...>
  translate <...>

}

// Layer 2 code
.....
// Layer 3 code
.....


global_settings {
  max_trace_level 20 // the more layers, the higher this number should be...
                     // for animatics reels, 5 or 8 is fine
  assumed_gamma 1.0  // VERY IMPORTANT!!!
}


camera {
  orthographic
  location <0,0,-10>
  up y
  right x*aspect_ratio
  angle ...
  rotate <0,0,0>
  look_at 0
}

That's it in a nutshell!  Don't forget to translate each layer slightly along
the z axis :)

--
Dan
GoofyGraffix.com


Post a reply to this message

From: Dan Byers
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 5 Feb 2009 10:35:01
Message: <web.498b061ea0d736a7a8d0b25a0@news.povray.org>
"Carlo C." <nomail@nomail> wrote:
> GNAM GNAM
> I have some appetite!
>
> great site, great animation!
>

Thanks, Carlo :)

--
Dan
GoofyGraffix.com


Post a reply to this message

From: Kenneth
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 5 Feb 2009 14:35:01
Message: <web.498b3d1fa0d736a7f50167bc0@news.povray.org>
"Dan Byers" <goofygraffix_at_geemail_dot_com> wrote:

> Thanks for the compliment :)  Yeah, you wouldn't normally think of using POV to
> make 2-D, traditional 'cel' animations, but it's such a versatile program that
> it can do it fairly easily.  All I'm doing is creating polygons for each 'cel'
> layer, and a #switch( frame_number ) block to assign an appropriate image_map
> as a texture for each polygon:

Thanks for the great tips; very much appreciated. I've lately been looking at
#switch #case #break for my own animations, but in all my years of POV'ing,
I've never actually used them very much at all. Don't ask me why, I have no
good excuse.  :-(   Now I see their usefulness.

>
> global_settings {
>   max_trace_level 20 // the more layers, the higher this number should be...
>                      // for animatics reels, 5 or 8 is fine
>   assumed_gamma 1.0  // VERY IMPORTANT!!!
> }

Something I've noticed about .png images is that, IF they have an embedded gamma
of 1.0, they seem to show up OK across a 'range' of POV's assumed_gamma values.
I once tried an experiment of varying assumed_gamma from .5 up to 3.0, and,
within a *certain* range, a .png image still looked good, almost identical. Not
near the extremes, though.  So the image does seem to be 'in love with' a
certain assumed_gamma value...probably 1.0, as you say. (I generally use 2.0
for all my scenes, for my own reasons, and the .png image looks the way it
should, to my eyes; but I'll re-experiment with that.)

KW


Post a reply to this message

From: Dan Byers
Subject: Re: Latest animation -- "Larry's Last Ride"
Date: 15 Feb 2009 14:40:00
Message: <web.49986f0ba0d736a755b8c9580@news.povray.org>
Okay, last word on this film: I have some test reels showing the animatics and
pencil roughs phases on my website (goofygraffix.com).  Feel free to check them
out.  Comments welcome :)

--
Dan
GoofyGraffix.com


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.